Input Radio對象用於訪問或創建type =“ radio”的輸入元素。
用法:
- 要訪問輸入元素,類型=“ radio”。
document.getElementById("ID");
- 要創建輸入元素,請輸入type =“ radio”。
var GFG = document.createElement("INPUT"); x.setAttribute("type", "radio");
屬性值:
值 | 描述 |
---|---|
autofocus | 它指出在頁麵加載時單選按鈕是否應該自動獲得焦點。 |
checked | 它返回單選按鈕的檢查狀態。 |
defaultChecked | 它返回checked屬性的默認值。 |
defaultValue | 它返回單選按鈕的默認值。 |
disabled | 返回是否禁用單選按鈕。 |
form | 它返回對包含單選按鈕的表單的引用。 |
name | 它返回單選按鈕的name屬性的值。 |
required | 它返回是否在提交表單之前必須選中單選按鈕。 |
type | 它返回單選按鈕是哪種類型的表單元素。 |
value | 它返回單選按鈕的value屬性的值。 |
示例1:訪問輸入對象類型=“ radio”
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML DOM Input Radio Object</h2>
<h3>An example access a Radio Button</h3>
Radio Button:
<input type="radio"
checked=true
id="radioID">
<p>Click the button to uncheck it.</p>
<button onclick="GFG()">
Click!
</button>
<script>
function GFG() {
// Accessing input element
// type="radio"
var x =
document.getElementById("radioID");
x.checked = false;
}
</script>
</body>
</html>
輸出:
點擊之前:
單擊後:
示例-2:創建輸入元素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 Object
</h2>
<p>Click to create a Radio Button.
</p>
<button onclick="myFunction()">
Create
</button>
<br>
<script>
function myFunction() {
// Creating input element
// type="radio"
var x =
document.createElement("INPUT");
x.setAttribute("type", "radio");
document.body.appendChild(x);
}
</script>
</body>
</html>
輸出:
點擊之前:
單擊後:
支持的瀏覽器:
- 穀歌瀏覽器
- 火狐瀏覽器
- Edge
- Safari
- Opera
相關用法
- HTML Input Radio required用法及代碼示例
- HTML Input Radio value用法及代碼示例
- HTML Input Radio name用法及代碼示例
- HTML Input Radio type用法及代碼示例
- HTML Input Radio form用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML Input Radio defaultChecked用法及代碼示例
- HTML Input Radio checked用法及代碼示例
- HTML Input Radio autofocus用法及代碼示例
- HTML Input Radio defaultvalue用法及代碼示例
- HTML input radio用法及代碼示例
- HTML DOM Object用法及代碼示例
- HTML DOM Input Week用法及代碼示例
- HTML DOM Input Button用法及代碼示例
- HTML DOM Input Submit用法及代碼示例
- HTML DOM Input URL用法及代碼示例
- HTML DOM Input Time用法及代碼示例
- HTML DOM Input Hidden用法及代碼示例
- HTML DOM Input Range用法及代碼示例
- HTML DOM Input Reset用法及代碼示例
- HTML DOM Input Number用法及代碼示例
- HTML DOM Input Password用法及代碼示例
- HTML DOM Input Color用法及代碼示例
- HTML DOM Input Datetime用法及代碼示例
注:本文由純淨天空篩選整理自apeksharustagi1998大神的英文原創作品 HTML | DOM Input Radio Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。