Button form 屬性
Button 對(duì)象定義和用法
form 屬性可返回對(duì)包含該按鈕的表單的引用。
如果包含該按鈕,則返回一個(gè) form 對(duì)象,如果未包含該按鈕,則返回 null。
語法
buttonObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性。
實(shí)例
實(shí)例
下面的例子可返回該按鈕所屬的表單的 id:
<html>
<body>
<form id="form1">
<button id="button1" type="button">Click me!</button>
</form>
<p>The id of the form containing the button is:
<script>
document.write(document.getElementById("button1").form.id);
</script></p>
</body>
</html>
<body>
<form id="form1">
<button id="button1" type="button">Click me!</button>
</form>
<p>The id of the form containing the button is:
<script>
document.write(document.getElementById("button1").form.id);
</script></p>
</body>
</html>
嘗試一下 ?
Button 對(duì)象
更多建議: