如何在JavaScript中使用document.forms?

使用JavaScript中的document.forms属性可获取文档中<form>标记的数量。

示例

您可以尝试运行以下代码以在JavaScript中实现 document.forms属性。

<!DOCTYPE html>
<html>
   <head>
      <title>JavaScript Example</title>
   </head>
   <body>
      <h1>Employee Information</h1>
      <form>
         Name: <input type="text" name="name" value="Amit"><br>
         Subject: <input type="text" name="sub" value="Java">
      </form>
      <h1>Department Information</h1>
      <form>
         DepartmentID: <input type="text" name="dptid" value="D001"><br>
         Dept Name: <input type="text" name="dname" value="Marketing">
      </form>
      <script>
         var num = document.forms.length;
         document.write("<br>How many forms? "+num);
      </script>
   </body>
</html>