1 getElementById方法
    定义在Document.prototype上 即Element节点上不能使用
    2 getElementsByName方法
    定义在HTMLDocument.prototype上 即非html中的document以外不能使用(xml document,Element)
    3 getElementsByTagName方法
    定义在 Document.prototype 和 Element.prototype 上
    4 HTMLDocument.prototype
    定义了一些常用的属性 body,head 分别指代HTML文档中的标签
    所以可以通过document.body document.head
    5 Document.prototype上
    定义了documentElement属性 指代文档的根元素 在HTML文档中 他总是指代元素
    即document.documentElement
    6 getElementsByClassName、querySelectorAll、querySelector
    在 Document,Element 类中均有定义