标签:
getElementsByTagName(“x”)
xx.getAttribute(“y”) //xx元素的y属性
xx.lastChild.nodeValue //获得xx的文本内容
document.createElement(“xx”) //创建xx元素
document.createTextNode(“blala”) 建立一段孤立的文本内容
x.appendChild(y) //把y赋给x当儿子属性
document.body.appendChild(y) //把y赋给body
标签:
原文地址:http://www.cnblogs.com/xiaoshan-coding/p/4609529.html