验证XML的HTML文件工具

验证XML合法性(DTD限制XML内容)的html代码页面---用IE浏览器打开

<html>

<body>

<scriptlanguage="JavaScript">

varxmlDoc=newActiveXObject("Microsoft.XMLDOM")

xmlDoc.async="false"

xmlDoc.validateOnParse="true"

xmlDoc.load("note_dtd_error.xml")

document.write("<br>ErrorCode:")

document.write(xmlDoc.parseError.errorCode)

document.write("<br>ErrorReason:")

document.write(xmlDoc.parseError.reason)

document.write("<br>ErrorLine:")

document.write(xmlDoc.parseError.line)

</script>

</body>

</html>

相关推荐