HTML DOM form 属性

定义和用法

form 属性返回对包含该 text area 的 表单的引用。

若成功,则该属性返回一个 form 对象。

语法

  1. textareaObject.form

实例

本例返回 text area 所属的表单的 id:

  1. <html>
  2. <body>
  3.  
  4. <form id="form1">
  5. <textarea id="txt1">
  6. Hello world....This is a text area
  7. </textarea>
  8. </form>
  9.  
  10. <p>The id of the form containing the text area is:
  11. <script type="text/javascript">
  12. x=document.getElementById('txt1');
  13. document.write(x.form.id);
  14. </script>
  15. </p>
  16.  
  17. </body>
  18. </html>