Window对象
1.浏览器定位和导航
URL:protocol、host、hostname、port、pathname、search
2.浏览器和屏幕信息
navigator对象:appName、appVersion、userAgent、platform、onLine、geolocation、javaEnabled()、cookieEnable()
脚本化文档
1.节点树文档:
parentNode
childNodes
firstNode、lastChild
nextSibling、previoursSibling
nodeType: 9-Document节点、1-Element节点、3-Text节点、8-Comment节点、11-DocumentFragment节点
nodeValue:Text节点或Comment节点的文本内容
nodeName:元素的标签名,以大写形式表示
2.作为元素树的文档
Text和Comment节点没有children属性,意味着上述Node.parentNode属性不可能返回Text或Comment节点。任何Element的parentNode总是另一个Element,或者Document或者DocumentFragment节点。