当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM strictErrorChecking用法及代码示例


DOM strictErrorChecking属性设置或返回是否可以对文档强制执行严格的错误检查。它用于返回布尔值true或false。如果为true,则表示可以对文档进行严格检查;如果为false,则不能应用。默认情况下,此属性为true。

返回值:返回布尔值,true或false。

用法


  • 返回:
documentObject.strictErrorChecking
  • 设置:
documentObject.strictErrorChecking=true|false

例:

    
<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM strictErrorChecking Property 
    </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML DOM strictErrorChecking Property</h2> 
  
    <p id="geeks" onclick="MyGeeks()"> 
        Hello Geeks! 
    </p> 
  
    <script> 
        function MyGeeks() { 
            document.getElementById("geeks").strictErrorChecking; 
        } 
    </script> 
</body> 
  
</html>

输出:

支持的浏览器:DOM strictErrorChecking属性不支持主要的浏览器。



相关用法


注:本文由纯净天空筛选整理自kartikgoel1999大神的英文原创作品 HTML | DOM strictErrorChecking Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。