目录

HTML DOM 文档 strictErrorChecking

示例

返回文档的 DOM 错误设置:

document.strictErrorChecking;
亲自试一试 »

描述

strictErrorChecking 属性已弃用。不要使用它。

strictErrorChecking 属性在所有新浏览器中返回未定义。

笔记

strictErrorChecking 属性是 DOM Core Level 3 (2004) 的一项功能。

它应该控制浏览器是否应该为 DOM 操作抛出错误异常。

备择方案:

JavaScript "use strict"


语法

返回严格错误检查

document.strictErrorChecking

设置严格错误检查

document.strictErrorChecking = true|false

返回值

类型 描述
布尔值 true如果 strictErrorChecking 已打开。
undefined在所有新浏览器中。