當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。