XML DOM ownerDocument ÊôÐÔ

¶¨ÒåºÍÓ÷¨

ownerDocument ÊôÐÔ·µ»ØÑ¡¶¨µÄÔªËØËùÊôµÄÎĵµ¶ÔÏó¡£

Óï·¨£º

elementNode.ownerDocument

ʵÀý

ÔÚËùÓеÄÀý×ÓÖУ¬ÎÒÃǽ«Ê¹Óà XML Îļþ books.xml£¬ÒÔ¼° JavaScript º¯Êý loadXMLDoc()¡£

ÏÂÃæµÄ´úÂëÆ¬¶Î»ñÈ¡ "books.xml" ÖеÚÒ»¸ö <title> ÔªËØµÄÊôÖ÷ÎĵµµÄÃû³ÆºÍ½ÚµãÀàÐÍ£º

xmlDoc=loadXMLDoc("books.xml");

var x=xmlDoc.getElementsByTagName("title")[0];
x=x.ownerDocument;

document.write("Nodename: " + x.nodeName);
document.write(" (nodetype: " + x.nodeType + ")");

ÒÔÉÏ´úÂëµÄÊä³ö£º

Nodename: #document (nodetype: 9)
VUE