Radio form 屬性
Radio 對象定義和用法
form 屬性可返回對包含該按鈕的表單的引用。
若成功,該屬性返回一個表單對象。
語法
radioObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性
實例
實例
下面的例子將返回該單選按鈕所屬的表單的 id:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("red").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
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()">Show id of container form</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("red").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
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()">Show id of container form</button>
</body>
</html>
嘗試一下 ?
Radio 對象
更多建議: