doucument物件的屬性和方法有:body、cookie、domain、lastModified、referrer、title、close()、open()、write()、getElementById()、normalize()等等。
本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
Document 物件
每個載入瀏覽器的 HTML 檔案都會成為 Document 物件。
Document 物件使我們可以從指令碼中對 HTML 頁面中的所有元素進行存取。
提示:Document 物件是 Window 物件的一部分,可通過 window.document 屬性對其進行存取。
Document 物件屬性和方法
HTML檔案中可以使用以下屬性和方法:
屬性 / 方法 | 描述 |
---|---|
document.activeElement | 返回當前獲取焦點元素 |
document.addEventListener() | 向檔案新增控制程式碼 |
document.adoptNode(node) | 從另外一個檔案返回 adapded 節點到當前檔案。 |
document.anchors | 返回對檔案中所有 Anchor 物件的參照。 |
document.applets | 返回對檔案中所有 Applet 物件的參照。 注意: HTML5 已不支援 <applet> 元素。 |
document.baseURI | 返回檔案的絕對基礎 URI |
document.body | 返回檔案的body元素 |
document.close() | 關閉用 document.open() 方法開啟的輸出流,並顯示選定的資料。 |
document.cookie | 設定或返回與當前檔案有關的所有 cookie。 |
document.createAttribute() | 建立一個屬性節點 |
document.createComment() | createComment() 方法可建立註釋節點。 |
document.createDocumentFragment() | 建立空的 DocumentFragment 物件,並返回此物件。 |
document.createElement() | 建立元素節點。 |
document.createTextNode() | 建立文位元組點。 |
document.doctype | 返回與檔案相關的檔案型別宣告 (DTD)。 |
document.documentElement | 返回檔案的根節點 |
document.documentMode | 返回用於通過瀏覽器渲染檔案的模式 |
document.documentURI | 設定或返回檔案的位置 |
document.domain | 返回當前檔案的域名。 |
document.domConfig | 已廢棄。返回 normalizeDocument() 被呼叫時所使用的設定。 |
document.embeds | 返回檔案中所有嵌入的內容(embed)集合 |
document.forms | 返回對檔案中所有 Form 物件參照。 |
document.getElementsByClassName() | 返回檔案中所有指定類名的元素集合,作為 NodeList 物件。 |
document.getElementById() | 返回對擁有指定 id 的第一個物件的參照。 |
document.getElementsByName() | 返回帶有指定名稱的物件集合。 |
document.getElementsByTagName() | 返回帶有指定標籤名的物件集合。 |
document.images | 返回對檔案中所有 Image 物件參照。 |
document.implementation | 返回處理該檔案的 DOMImplementation 物件。 |
document.importNode() | 把一個節點從另一個檔案複製到該檔案以便應用。 |
document.inputEncoding | 返回用於檔案的編碼方式(在解析時)。 |
document.lastModified | 返回檔案被最後修改的日期和時間。 |
document.links | 返回對檔案中所有 Area 和 Link 物件參照。 |
document.normalize() | 刪除空文位元組點,並連線相鄰節點 |
document.normalizeDocument() | 刪除空文位元組點,並連線相鄰節點的 |
document.open() | 開啟一個流,以收集來自任何 document.write() 或 document.writeln() 方法的輸出。 |
document.querySelector() | 返回檔案中匹配指定的CSS選擇器的第一元素 |
document.querySelectorAll() | document.querySelectorAll() 是 HTML5中引入的新方法,返回檔案中匹配的CSS選擇器的所有元素節點列表 |
document.readyState | 返回檔案狀態 (載入中……) |
document.referrer | 返回載入當前檔案的檔案的 URL。 |
document.removeEventListener() | 移除檔案中的事件控制程式碼(由 addEventListener() 方法新增) |
document.renameNode() | 重新命名元素或者屬性節點。 |
document.scripts | 返回頁面中所有指令碼的集合。 |
document.strictErrorChecking | 設定或返回是否強制進行錯誤檢查。 |
document.title | 返回當前檔案的標題。 |
document.URL | 返回檔案完整的URL |
document.write() | 向檔案寫 HTML 表示式 或 JavaScript 程式碼。 |
document.writeln() | 等同於 write() 方法,不同的是在每個表示式之後寫一個換行符。 |
【相關推薦:】
以上就是javascript中doucument物件的屬性和方法有哪些的詳細內容,更多請關注TW511.COM其它相關文章!