XML DOM strictErrorChecking Property
Complete Document Object Reference
Definition and Usage
The strictErrorChecking property sets or returns whether error-checking is enforced or not.
When set to false, the implementation is free to not test every possible
error case. This property is true by default.
Syntax
documentObject.strictErrorChecking
|
Example
The following code fragment loads "books.xml"
into xmlDoc using
loadXMLDoc() and returns whether error-checking is enforced or
not:
xmlDoc=loadXMLDoc("books.xml");
errCheck=xmlDoc.strictErrorChecking;
document.write(errCheck);
|
Output:
Try-It-Yourself Demos
Check whether error checking is enforced or not
Complete Document Object Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|