标签:
1)node类型
nodeName(what node) and nodeValue(always null)
node父子之间可以用childNodes来表示 firstChild,childNode[a],lastChild
兄弟结点,可以用nextsiBiling,previousSibling
在什么点前面插入地加 a.insertBefore(c,b);
node的替换a.replaceChild(c,b);
node的移除a.remove(b)
克隆cloneNode(),里面有一布尔值,是否进行深复制
2)document
nodeName=#document
nodeValue=9
document.title取得题目
document.body
document.documentElement
document.doctype
document.URL
document.forms
document.images
document.getElementById()
document.getElementByTagName()
document.getElementByname()
document.write()
标签:
原文地址:http://www.cnblogs.com/vhyc/p/5851433.html