HTML - DOM 文档 strictErrorChecking 属性



HTML DOM 文档 strictErrorChecking 属性用于确定文档是否强制执行严格的错误检查。这是一个已弃用的属性。它返回一个布尔值,严格错误检查开启时为 true,否则为 false。

语法

设置 strictErrorChecking
document.strictErrorChecking=true|false;
获取 strictErrorChecking
document.strictErrorChecking;

返回值

在所有新浏览器中返回 undefined。

HTML DOM 文档 'strictErrorChecking' 属性示例

这是一个获取返回 undefined 的 strictErrorChecking 属性的示例。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM document strictErrorChecking Property
    </title>
</head>
<body>
    <button onclick="fun()">
        Click me
    </button>
    <p id="type"></p>
    <script>
        function fun() {
            let x = document.strictErrorChecking;
            document.getElementById("type").innerHTML = x;
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
strictErrorChecking
html_dom_document_reference.htm
广告