HTML DOM form 属性

定义和用法

form 属性返回对包含该元素的表单对象的引用。

语法

  1. checkboxObject.form

实例

下面的例子返回了该 checkbox 所属的表单的 id:

  1. <html>
  2. <body>
  3.  
  4. <form id="form1">
  5. <input type="checkbox" id="check1" />
  6. </form>
  7.  
  8. <p>The form containing the checkbox is:
  9. <script type="text/javascript">
  10. x=document.getElementById('check1');
  11. document.write(x.form.id);
  12. </script></p>
  13.  
  14. </body>
  15. </html>