目录

HTML DOM form 对象


表单对象

Form 对象代表一个 HTML <form> 元素。

访问表单对象

您可以使用 getElementById() 访问 <form> 元素:

示例

var x = document.getElementById("myForm");
亲自试一试 »

提示:您还可以使用以下方式访问 <form> 元素形式收藏。

创建表单对象

您可以使用 document.createElement() 方法创建 <form> 元素:

示例

var x = document.createElement("FORM");
亲自试一试 »

表单对象集合

Collection Description
elements Returns a collection of all elements in a form


表单对象属性

Property Description
acceptCharset Sets or returns the value of the accept-charset attribute in a form
action Sets or returns the value of the action attribute in a form
autocomplete Sets or returns the value of the autocomplete attribute in a form
encoding Alias of enctype
enctype Sets or returns the value of the enctype attribute in a form
length Returns the number of elements in a form
method Sets or returns the value of the method attribute in a form
name Sets or returns the value of the name attribute in a form
noValidate Sets or returns whether the form-data should be validated or not, on submission
target Sets or returns the value of the target attribute in a form

表单对象方法

Method Description
reset() Resets a form
submit() Submits a form

标准属性和事件

Form 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表单

JavaScript 教程:JS 表单/验证

HTML 参考:HTML <表单> 标签