XML DOM documentElement 屬性

2018-08-05 18:21 更新

XML DOM documentElement 屬性


Document 對象參考手冊 Document 對象

定義和用法

documentElement 屬性返回文檔的根節(jié)點。

語法

documentObject.documentElement


實例

下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并顯示 XML 文檔的位置:

實例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.documentElement;

document.write("Nodename: " + x.nodeName + "
");
document.write("Nodevalue: " + x.nodeValue + "
");
document.write("Nodetype: " + x.nodeType);

輸出:

Nodename: bookstore
Nodevalue: null
Nodetype: 1

嘗試一下 ?

Document 對象參考手冊 Document 對象
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號