ownerDocument 屬性返回節點所屬的根元素。
基本介紹
- 中文名:ownerDocument 屬性
- 外文名:ownerDocument
- 語法:attrObject.ownerDocument
- 定義:屬性返回節點所屬的根元素
正文,定義和用法,語法,實例,
正文
定義和用法
ownerDocument 屬性返回節點所屬的根元素。
語法
attrObject.ownerDocument
實例
在所有的例子中,我們將使用 XML 檔案 books.xml,以及 JavaScript 函式 loadXMLDoc()。
books.xml檔案的內容:
<bookstore><bookcategory="children"><titlelang="en">HarryPotter</title><author>JK.Rowling</author><year>2005</year><price>29.99</price></book><bookcategory="cooking"><titlelang="en">EverydayItalian</title><author>GiadaDeLaurentiis</author><year>2005</year><price>30.00</price></book></bookstore>
下面的代碼片段返回 XML 文檔中第一個 category 屬性節點的根元素:
xmlDoc=loadXMLDoc("books.xml");x=xmlDoc.getElementsByTagName('book');document.write(x.item(0).attributes[0].ownerDocument);document.write("<br/>");document.write(x.item(0).attributes[0].ownerDocument.nodeName);document.write("<br/>");document.write(x.item(0).attributes[0].ownerDocument.nodeType);
以上代碼的輸出:
[objectXMLDocument]#document9