1.getElementById() 方法可傳回對擁有指定 ID 的第一個對象的引用
2.getElementsByName() 方法可傳回帶有指定名稱的對象的集合
3.getElementsByTagName() 方法可傳回帶有指定标簽名的對象的集合
4.getElementsByClassName() 方法可傳回帶有指定類名的對象的集合
5.document.querySelector() 方法可傳回比對指定 CSS 選擇器的一個對象的引用
6.document.querySelectorAll() 方法可傳回比對指定 CSS 選擇器的的對象的集合
7.document.body提供對 <body> 元素的直接通路
8.document.forms傳回對文檔中所有 Form 對象引用
9.表單名.控件名.value可以用來擷取表單控件的值
9.document.title傳回目前文檔的标題
轉載于:https://www.cnblogs.com/fantianlong/p/9961075.html