Radio name 屬性
Radio 對象定義和用法
name 屬性可設(shè)置或返回單選按鈕的名稱。
提示:使用 name 屬性定義的單選按鈕組 (具有相同名稱的單選按鈕 屬于同一組)。
name 屬性用于表單提交后向服務器傳送數(shù)據(jù),或者在Javascript引用表單數(shù)據(jù)。
注意: 在表單提交后只有表單元素的 name 屬性才會傳遞數(shù)據(jù)值。
語法
設(shè)置 name 屬性:
radioObject.name="name"
返回 name 屬性:
radioObject.name
瀏覽器支持
所有主要瀏覽器都支持 name 屬性
實例
實例
顯示 "Red" 單選按鈕的 name 屬性值:/p>
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("red").name;
alert(x);
}
</script>
</head>
<body>
<form>
What color do you prefer?<br>
<input type="radio" name="colors" id="red">Red<br>
<input type="radio" name="colors" id="blue">Blue<br>
<input type="radio" name="colors" id="green">Green
</form>
<button type="button" onclick="displayResult()">Display name</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("red").name;
alert(x);
}
</script>
</head>
<body>
<form>
What color do you prefer?<br>
<input type="radio" name="colors" id="red">Red<br>
<input type="radio" name="colors" id="blue">Blue<br>
<input type="radio" name="colors" id="green">Green
</form>
<button type="button" onclick="displayResult()">Display name</button>
</body>
</html>
嘗試一下 ?
Radio 對象
更多建議: