当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM elements 集合
The elements collection returns an array containing each element in the form.
元素集合可返回在包含了表单中每个元素的数组
formObject.elements[].property |
The following example outputs the value of all the form elements:
下面的举例将输出所有表单中的元素:
<html> <form id="myForm"> <p>得到表单中所有元素的值:<br /> </body> |
Get the value of all form elements
得到所有表单中元素的值