JavaScript DOM属性和方法之element元素对象

JavaScript DOM属性和方法之element元素对象_第1张图片

在HTML DOM中,elment对象表示HTML与纳素,可以包含的节点类型有元素u节点、文本节点、注释节点。它们有响应的属性和方法,有很多都是我们之前用过的。

一、element对象属性

1、attributes
2、childNodes
3、className
4、clientWidth、offsetWidth、scrollWidth等宽高属性
5、contentEditable
6、dir
7、firstChild 和 lastChild
8、id
9、innerHTML 和 textContent
10、nextSibling 和 previousSibling
11、style

二、element对象方法

1、appendChild()
2、insertBefore()
3、cloneNode()
4、getAttribute() 和 setAttribute()
5、getAttributeNode() 和 setAttributeNode()
6、removeAttribute() 和。removeAttributeNode()
7、removeChild()
8、replaceChild()
9、getElementByTagName()

你可能感兴趣的:(JavaScript,javascript,前端,开发语言)