HTML DOM中的DOM輸入單選類型屬性用於返回單選按鈕的表單元素的類型。它總是返回輸入單選按鈕的提交。
用法:
radioObject.type
以下示例程序旨在說明HTML DOM中的Radio type屬性:
例:本示例返回Radio字段的表單元素的類型。
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
HTML DOM Input Radio type Property
</h2>
Radio Button:
<input type="radio"
checked=true
id="radioID"
value="Geeks_radio"
name="Geek_radio">
<br>
<br>
<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").type;
document.getElementById(
"GFG").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM輸入單選類型屬性所支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML input radio用法及代碼示例
- HTML Input Radio name用法及代碼示例
- HTML Input Radio value用法及代碼示例
- HTML Input Radio required用法及代碼示例
- HTML Input Radio defaultvalue用法及代碼示例
- HTML Input Radio autofocus用法及代碼示例
- HTML Input Radio defaultChecked用法及代碼示例
- HTML Input Radio form用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML Input Radio checked用法及代碼示例
- HTML Input URL type用法及代碼示例
- HTML Input Reset type用法及代碼示例
- HTML Input DatetimeLocal type用法及代碼示例
- HTML Input Datetime type用法及代碼示例
- HTML Input Color type用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Radio type Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。