Checkbox form 屬性
Checkbox 對(duì)象定義和用法
form 屬性返回包含復(fù)選框的表單引用。
該屬性返回 form 對(duì)象。
語(yǔ)法
checkboxObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性
實(shí)例
實(shí)例
面的例子返回了該 checkbox 所屬的表單的 id:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("myCheck").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
<input type="checkbox" id="myCheck">Do you like summer?
</form>
<button type="button" onclick="displayResult()">Display id of container form</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("myCheck").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
<input type="checkbox" id="myCheck">Do you like summer?
</form>
<button type="button" onclick="displayResult()">Display id of container form</button>
</body>
</html>
嘗試一下 ?
Checkbox 對(duì)象
更多建議: