DTD 검증
Internet Explorer를 사용하여 DTD에 대해 XML의 유효성을 검사합니다.
XML 파서를 통한 유효성 검사
XML 문서를 열려고 하면 XML 파서에서 오류가 발생할 수 있습니다. parseError 개체에 액세스하면 오류를 일으킨 정확한 코드, 텍스트 및 줄까지 검색할 수 있습니다.
참고: load() 메서드는 파일용이고, loadXML() 메서드는 문자열용입니다.
인스턴스
<html> <body> <h3> This demonstrates a parser error: </h3> <script> var xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false"; xmlDoc.validateOnParse="true"; xmlDoc.load("note_dtd_error.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); </script> </body> </html>
인스턴스 실행»
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요
xml 파일 보기
유효성 검사 끄기
XML 파서의 verifyOnParse를 "false"로 설정하여 유효성 검사를 끌 수 있습니다.
인스턴스
<html> <body> <script> var xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false"; xmlDoc.validateOnParse="false"; xmlDoc.load("note_dtd_error.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); </script> </body> </html>
인스턴스 실행»
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요
범용 XML 검사기
XML 파일의 유효성을 검사하는 데 도움을 주기 위해 이 링크를 만들었으므로 모든 XML 파일의 유효성을 검사할 수 있습니다.
parseError 객체
parseError 객체에 대한 자세한 내용은 XML DOM 튜토리얼에서 읽을 수 있습니다.