如果想变成自己的,就把这里的xml文档名替换成自己xml文档名

var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false";
xmlDoc.validateOnParse="true";
/**********************/
xmlDoc.load("book.xml");
/**********************/
document.write("<br>Error Code: ");
document.write(xmlDoc.parseError.errorCode);
document.write("<br>Error Reason: ");
document.write(xmlDoc.parseError.reason);
document.write("<br>Error Line: ");
document.write(xmlDoc.parseError.line);
05-18 21:02