美文网首页
DOM对象方法

DOM对象方法

作者: i_木木木木木 | 来源:发表于2018-05-14 11:23 被阅读0次

DOM对象方法:

getElementById()

返回带有指定ID的元素。

getElementByTagName()

返回包含带有指定标签名的所有元素的节点列表(集合,节点数组)。

getElementByClassName()

返回包含带有指定类名的所有元素的节点列表。

appendChild()

把新的节点添加到指定节点。

removeChild()

删除子节点。

replaceChild()

替换子节点。

insertBefore()

在指定的子节点前面插入新的子节点。

createAttribute()

创建属性节点。

createElement()

创建元素节点。

createTextNode()

创建文本节点。

getAttribute()

返回指定的属性值。

setAttribute()

把指定属性设置或修改为指定的值。

相关文章

网友评论

      本文标题:DOM对象方法

      本文链接:https://www.haomeiwen.com/subject/lzuddftx.html