HTML DOM中的DOM输入单选选中属性用于设置或返回输入单选按钮的选中状态。此属性用于反映HTML选中的属性。
用法:
- 它返回选中的属性。
radioObject.checked
- 它用于设置选中的属性:
radioObject.checked = true|false
属性值:
- true:它指定选中一个单选按钮。
- false:它具有默认值。它指定未选中单选按钮。
返回值:它返回一个布尔值,表示是否已选中单选按钮。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
HTML DOM Input Radio Checked Property
</h2>
<form id="myGeeks">
Radio Button:
<input type="radio"
checked=true
id="radioID"
value="Geeks_radio"
name="Geek_radio"
disabled>
<br>
<br>
</form>
<button onclick="GFG()">
Click!
</button>
<p id="GFG"
style="font-size:25px;
color:green;">
</p>
<script>
function GFG() {
// Accessing input element
// type="radio"
var x =
document.getElementById(
"radioID").defaultChecked;
document.getElementById(
"GFG").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML DOM Input Radio Checked Property</h2>
<form id="myGeeks">
Radio Button:
<input type="radio"
id="radioID"
value="Geeks_radio"
name="Geek_radio"
checked>
<br>
<br>
</form>
<button onclick="GFG()">
check
</button>
<button onclick="uncheck()">
uncheck
</button>
<p id="GFG"
style="font-size:25px;
color:green;">
</p>
<script>
function GFG() {
// Accessing input element
// type="radio"
document.getElementById(
"radioID").checked = "true";
}
function uncheck() {
document.getElementById(
"radioID").checked = false;
}
</script>
</body>
</html>
输出:
单击“检查”按钮之前:
单击“选中”按钮后:
单击取消选中按钮后:
支持的浏览器:下面列出了DOM输入Radio选中的属性支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input Checkbox checked用法及代码示例
- HTML Input Radio name用法及代码示例
- HTML Input Radio value用法及代码示例
- HTML Input Radio defaultChecked用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Radio required用法及代码示例
- HTML Input Radio form用法及代码示例
- HTML Input Radio type用法及代码示例
- HTML Input Radio defaultvalue用法及代码示例
- HTML Input Radio autofocus用法及代码示例
- HTML DOM Input Radio用法及代码示例
- HTML input radio用法及代码示例
- HTML Input URL name用法及代码示例
- HTML Input URL value用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Radio checked Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。