codecamp

XML DOM ownerDocument 属性——Attr 对象

XML DOM ownerDocument 属性


Attr 对象参考手册 Attr 对象

定义和用法

ownerDocument 属性返回节点所属的根元素(document 对象)。

语法

attrObject.ownerDocument


实例

下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并返回第一个 category 属性节点的根元素:

实例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.getElementsByTagName('book');

document.write(x.item(0).attributes[0].ownerDocument);
document.write("
");
document.write(x.item(0).attributes[0].ownerDocument.nodeName);
document.write("
");
document.write(x.item(0).attributes[0].ownerDocument.nodeType);

上面的代码将输出:

[object XMLDocument]
#document
9

尝试一下 »

Attr 对象参考手册 Attr 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }