您的位置:首页 > Web前端 > JavaScript

DOM scripting: web design with javascript and DOM

2015-10-23 03:12 579 查看

Three sheets to the Web

Structure : describe the semantic meaning of content

Presentation : describes how the content should be displayed

Behavior : describes how the content should react to events

Web design discipline : Separation

Use (X)HTML to structure your documents.

Use CSS to attach presentational information.

Use DOM scripting to apply behavioral instructions.

DOM

Tree: element node, attribute node, text node

Every element in a document is an object, and every one of these objects has a whole collection of properties.

Position property :

parentNode, nextSibling, previousSibling, childNodes, firstChild, and lastChild

Identity property: nodeType, nodeName

Style property: (style property is an object)

/p/ id=”example” style=”color: grey; font-family: ‘Arial’,sans-serif;”> /p/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  javascript web设计 dom