每個載入瀏覽器的 HTML 文件都會成為 Document 物件。 Document 物件可讓我們從腳本中對 HTML 頁面中的所有元素進行存取。
屬性
1 document.anchors 傳回文件中所有 Anchor 物件的參考。還有document.links/document.forms/document.images等
2 document.URL 傳回目前文件的url
3 document.title # ## #. 4 document.body 返回body元素節點
方法1 document.close() 關閉以document.open() 方法開啟的輸出流,並顯示選取的數據。
<!DOCTYPE html> <html> <head> <script> function createDoc() { var w=window.open(); w.document.open(); w.document.write("<h1>Hello World!</h1>"); w.document.close(); } </script> </head> <body> <input type="button" value="New document in a new window" onclick="createDoc()"> </body> </html>
<!DOCTYPE html> <html lang="en"> <!DOCTYPE html> <head> </head> <body> <p>hello world</p> <script> var a = document.createElement('hr'); document.body.appendChild(a) </script> </body> </html>
<!DOCTYPE html> <html> <body> <p id="demo">Click the button to make a BUTTON element.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var btn=document.createElement("BUTTON"); document.body.appendChild(btn); }; </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <!DOCTYPE html> <head> </head> <body> <p>hello world</p> <script> var a = document.createTextNode('hahahah'); document.body.appendChild(a) </script> </body> </html>
6 document.getElementById() 傳回擁有指定 id 的第一個物件的參考。
7 document.getElementsByName() 傳回指定名稱的物件集合。
8 document.getElementsByTagName() 傳回指定標籤名的物件集合。
9 document.write() 寫入 HTML 運算式 或 JavaScript 程式碼。注意:當html文檔載入完後再使用write方法,會導致write內容覆寫原本的html文檔。
<!DOCTYPE html> <html lang="en"> <!DOCTYPE html> <head> </head> <body> <p>hello world</p> <script> document.write('hahahh') </script> </body> </html>
以上是javascript document物件屬性與方法程式碼實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!