HTML DOM Checkbox form 屬性

2018-08-04 20:40 更新

Checkbox form 屬性

Checkbox 對(duì)象參考手冊(cè) Checkbox 對(duì)象

定義和用法

form 屬性返回包含復(fù)選框的表單引用。

該屬性返回 form 對(duì)象。

語(yǔ)法

checkboxObject.form


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

嘗試一下 ?


Checkbox 對(duì)象參考手冊(cè) Checkbox 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)