HTML中的Input Checkbox defaultChecked属性用于返回checked属性的默认值。它具有一个布尔值,如果默认情况下选中此复选框,则返回true,否则返回false。
用法:
checkboxObject.defaultChecked
例:本示例说明了Input Checkbox defaultChecked属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input defaultChecked disabled Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>DOM Input Checkbox defaultChecked Property</h2>
<form id="myGeeks">
<!-- Below input elements have attribute
checked -->
<input type="checkbox" name="check" id="GFG"
value="1" Checked>Checked by default<br>
<input type="checkbox" name="check" value="2">
Not checked by default<br>
</form><br>
<button onclick="myGeeks()">
Submit
</button>
<p id="sudo" style="color:green;font-size:25px;"></p>
<!-- Script to return the Input Checkbox
defaultChecked Property -->
<script>
function myGeeks() {
var g = document.getElementById("GFG").defaultChecked;
document.getElementById("sudo").innerHTML = g;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入defaultchecked属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Input Radio defaultChecked用法及代码示例
- HTML Input Checkbox用法及代码示例
- HTML Input Checkbox value用法及代码示例
- HTML Input Checkbox name用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input Checkbox form用法及代码示例
- HTML Input Checkbox required用法及代码示例
- HTML Input Checkbox checked用法及代码示例
- HTML Input Checkbox autofocus用法及代码示例
- HTML Input Checkbox type用法及代码示例
- HTML input checkbox用法及代码示例
- HTML Input Checkbox defaultValue用法及代码示例
- HTML Input URL name用法及代码示例
- HTML Input URL value用法及代码示例
- HTML Input URL required用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Checkbox defaultChecked Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。