JavaScript 参考手册
Form length 属性
下面的例子可返回表单中元素的数目
源代码:
点击运行 »
<form id="frm1" action="/plays/html-form-submit"> 第一个名称: <input type="text" name="fname" value="Donald"><br> 第二个名称: <input type="text" name="lname" value="Duck"><br> <input type="submit" value="提交"> </form> <p>"frm1"元素的数量为: <script> document.write(document.getElementById("frm1").length); </script> </p>
运行结果:
点击运行 »