XML DOM xmlStandalone ÊôÐÔ
¶¨ÒåºÍÓ÷¨
xmlStandalone ÊôÐÔ¿ÉÉèÖûò·µ»ØÎĵµÊÇ·ñΪ standalone¡£
Óï·¨£º
documentObject.xmlStandalone
ʵÀý
ÔÚËùÓеÄÀý×ÓÖУ¬ÎÒÃǽ«Ê¹Óà XML Îļþ books.xml£¬ÒÔ¼° JavaScript º¯Êý loadXMLDoc()¡£
ÒÔÏ´úÂëÆ¬¶Î¿ÉÏÔʾ XML µÄ±àÂë·½·¨¡¢standalone ÊôÐÔÒÔ¼°ÎĵµµÄ XML °æ±¾£º
xmlDoc=loadXMLDoc("books.xml");
document.write("XML encoding: " + xmlDoc.xmlEncoding);
document.write("<br />");
document.write("XML standalone: " + xmlDoc.xmlStandalone
);
document.write("<br />");
document.write("XML version: " + xmlDoc.xmlVersion);
document.write("<br />");
document.write("Encoding when parsing: " + xmlDoc.inputEncoding);
Êä³ö£º
XML encoding: ISO-8859-1 XML standalone: false XML version: 1.0 Encoding when parsing: ISO-8859-1