forms 集合返回当前页面所有表单的数组集合。
所有主要浏览器都支持 forms 集合
返回文档中表单数量:
<html> <body> <form name="Form1"></form> <form name="Form2"></form> <form></form> <p>表单数目: <script> document.write(document.forms.length); </script></p> </body> </html> 以上实例输出结果: 表单数目: 3尝试一下 »
返回文档中第一个表单的名称:
<html> <body> <form name="Form1"></form> <form name="Form2"></form> <form></form> <p>第一个表单名称: <script> document.write(document.forms[0].name); </script></p> </body> </html> 以上实例输出结果: 第一个表单名称: Form1尝试一下 »