动态创建html内容时所用的W3C DOM属性和方法
2021-07-09 22:06
标签:for tno 父节点 node 节点 w3c dom ace 方法参数 pre document的属性和方法: 节点的属性和方法:
document.createElement(tagName) :文档对象上的createElement方法可以创建由tagName指定的元素.如果以串div作为方法参数,就会生成一个div元素.
document.createTextNode(text) :文档对象的createTextNode方法会创建一个包含静态文本text的文本节点.
document.createAttribute(): 用指定的名字创建新的Attr节点.
document.createComment() :用指定的字符串创建新的Comment节点.
document.getElementById(): 返回文档中具有指定id的Element节点.
document .getElementsByTagName(): 返回文档中具有指定标记名的所有Element节点.返回为一Element节点数组;
appendChild(childNode) :appendChild方法将指定的节点增加到当前元素的子节点列表(作为一个新的子节点).例如,可以增加一个option元素,作为select元素的子节点.
getAttribute(name) : 该方法用来获得元素中name属性的值.
setAttribute(name,value) : 该方法用来设置元素中name属性的值.
insertBefore(newNode,targetNode) :该方法将节点newNode作为当前元素的子节点插到targetNode子节点元素的前面.
removeAttribute(name) :该方法从元素中删除属性name.
文章标题:动态创建html内容时所用的W3C DOM属性和方法
文章链接:http://soscw.com/index.php/essay/102950.html