HTML DOM中的DOM Input Radio defaultChecked屬性用於返回checked屬性的默認值。如果默認選中單選按鈕,則返回true,否則返回false。
用法:
radioObject.defaultChecked
以下示例程序旨在說明如何返回屬性。例:
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
HTML DOM Input Radio default 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>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入支持的瀏覽器輸入Radio defaultChecked屬性如下:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input Checkbox defaultChecked用法及代碼示例
- HTML Input Radio value用法及代碼示例
- HTML Input Radio name用法及代碼示例
- HTML Input Radio autofocus用法及代碼示例
- HTML Input Radio checked用法及代碼示例
- HTML Input Radio form用法及代碼示例
- HTML Input Radio type用法及代碼示例
- HTML Input Radio defaultvalue用法及代碼示例
- HTML Input Radio required用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML DOM Input Radio用法及代碼示例
- HTML input radio用法及代碼示例
- HTML Input URL value用法及代碼示例
- HTML Input URL name用法及代碼示例
- HTML Input Date value用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Radio defaultChecked Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。