新人求助, 帮我看看这段javascript验证xml的代码
try{
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","xml1.xml",false);
xmlhttp.send(null);
xmldoc = xmlhttp.responseXML.documentElement;
xmldoc.validateOnParse="true";
document.writeln(xmldoc.parseError.reason+"1");
}
catch(e)
{
error=e.message;
document.writeln(error);
}