XML DOM value ÊôÐÔ

¶¨ÒåºÍÓ÷¨

value ÊôÐÔ·µ»ØÊôÐÔµÄÖµ¡£

Óï·¨£º

attrObject.value

ʵÀý

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

ÏÂÃæµÄ´úÂëÆ¬¶ÎÏÔʾ category ÊôÐÔµÄÃû³ÆºÍÖµ£º

xmlDoc=loadXMLDoc("/example/xdom/books.xml");

x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].name);
document.write(" = ");
document.write(x.item(i).attributes[0].value);
document.write("<br />");
}

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

category = children
category = cooking
category = web
category = web
VUE