当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > strictErrorChecking 属性
The strictErrorChecking property sets or returns whether error-checking is enforced or not.
strictErrorChecking属性设置或返回了是否需要强制执行错误检查。
When set to false, the implementation is free to not test every possible error case. This property is true by default.
当设置为false时,将不会测试每个可能的错误情况。默认属性为true。
documentObject.strictErrorChecking |
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“book.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment returns whether error-checking is enforced or not:
下面的代码片断返回了是否需要强制执行错误检查:
xmlDoc=loadXMLDoc("books.xml"); var errCheck=xmlDoc.strictErrorChecking; document.write(errCheck); |
Output:
输出结果:
true |
Check whether error checking is enforced or not
是否需要强制执行错误检查