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屬性不支持主要的瀏覽器。
相關用法
- HTML Bdo dir用法及代碼示例
- HTML DOM name用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML li value用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML Map name用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM title用法及代碼示例
- HTML DOM isContentEditable用法及代碼示例
- HTML DOM nextElementSibling用法及代碼示例
- HTML DOM ownerDocument用法及代碼示例
- HTML DOM offsetWidth用法及代碼示例
- HTML HR color用法及代碼示例
注:本文由純淨天空篩選整理自kartikgoel1999大神的英文原創作品 HTML | DOM strictErrorChecking Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。