The HTMLFormElement
interface provides methods to create and modify <form>
elements.
- document.forms - returns an array of HTMLFormElement objects referencing all forms on the page.
- document.forms[index] - returns an HTMLFormElement object referencing the form at the specified index.
- document.forms['id'] - returns an HTMLFormElement object referencing the form with the specified id.
- document.forms['name'] - returns an HTMLFormElement object referencing the form with the specified name.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 20%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 120" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/EventTarget" target="_top"><rect x="1" y="1" width="110" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="56" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">EventTarget</text></a><polyline points="111,25 121,20 121,30 111,25" stroke="#D4DDE4" fill="none"/><line x1="121" y1="25" x2="151" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/Node" target="_top"><rect x="151" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="188.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Node</text></a><polyline points="226,25 236,20 236,30 226,25" stroke="#D4DDE4" fill="none"/><line x1="236" y1="25" x2="266" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/Element" target="_top"><rect x="266" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="303.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Element</text></a><polyline points="341,25 351,20 351,30 341,25" stroke="#D4DDE4" fill="none"/><line x1="351" y1="25" x2="381" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement" target="_top"><rect x="381" y="1" width="110" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="436" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">HTMLElement</text></a><polyline points="491,25 501,20 501,30 491,25" stroke="#D4DDE4" fill="none"/><line x1="501" y1="25" x2="509" y2="25" stroke="#D4DDE4"/><line x1="509" y1="25" x2="509" y2="90" stroke="#D4DDE4"/><line x1="509" y1="90" x2="492" y2="90" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement" target="_top"><rect x="341" y="65" width="150" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="416" y="94" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">HTMLFormElement</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Properties
This interface also inherits properties from its parent, HTMLElement
.
HTMLFormElement.elements
Read only- A
HTMLFormControlsCollection
holding all form controls belonging to this form element. HTMLFormElement.length
Read only- A
long
reflecting the number of controls in the form. HTMLFormElement.name
- A
DOMString
reflecting the value of the form'sname
HTML attribute, containing the name of the form. HTMLFormElement.method
- A
DOMString
reflecting the value of the form'smethod
HTML attribute, indicating the HTTP method used to submit the form. Only specified values can be set. HTMLFormElement.target
- A
DOMString
reflecting the value of the form'starget
HTML attribute, indicating where to display the results received from submitting the form. HTMLFormElement.action
- A
DOMString
reflecting the value of the form'saction
HTML attribute, containing the URI of a program that processes the information submitted by the form. HTMLFormElement.encoding
orHTMLFormElement.enctype
- A
DOMString
reflecting the value of the form'senctype
HTML attribute, indicating the type of content that is used to transmit the form to the server. Only specified values can be set. The two methods are synonyms. HTMLFormElement.acceptCharset
- A
DOMString
reflecting the value of the form'saccept-charset
HTML attribute, representing the character encoding that the server accepts. HTMLFormElement.autocomplete
- A
DOMString
reflecting the value of the form'sautocomplete
HTML attribute, indicating whether the controls in this form can have their values automatically populated by the browser. HTMLFormElement.noValidate
- A
Boolean
reflecting the value of the form'snovalidate
HTML attribute, indicating whether the form should not be validated.
Methods
This interface also inherits methods from its parent, HTMLElement
.
HTMLFormElement.submit()
- Submits the form to the server.
HTMLFormElement.reset()
- Resets the form to its initial state.
HTMLFormElement.checkValidity()
- Returns
true
if the element's child controls are subject to constraint validation and satisfy those contraints; returnsfalse
if some controls do not satisfy their constraints. Fires an event namedinvalid
at any control that does not satisfy its constraints; such controls are considered invalid if the event is not canceled. It is up to the programmer to decide how to respond tofalse
. HTMLFormElement.reportValidity()
- Returns
true
if the element's child controls satisfy their validation constraints. Whenfalse
is returned, cancelableinvalid
events are fired for each invalid child and validation problems are reported to the user. HTMLFormElement.requestAutocomplete()
- Triggers a native browser interface to assist the user in completing the fields which have an autofill field name value that is not
off
oron
. The form will receive an event once the user has finished with the interface, the event will either beautocomplete
when the fields have been filled orautocompleteerror
when there was a problem. This method has been removed from Chrome and Firefox — see bug 1270740 for background information on why.
Examples
Create a new form element, modify its attributes and submit it:
var f = document.createElement("form");// Create a form document.body.appendChild(f); // Add it to the document body f.action = "/cgi-bin/some.cgi"; // Add action and method attributes f.method = "POST" f.submit(); // Call the form's submit method
Extract information from a form element and set some of its attributes:
<form name="formA" id="formA" action="/cgi-bin/test" method="POST"> <p>Click "Info" for form details; "Set" to change settings.</p> <p> <input type="button" value="info" onclick="getFormInfo();"> <input type="button" value="set" onclick="setFormInfo(this.form);"> <input type="reset" value="reset"><br> <textarea id="tex" style="height:15em; width:20em"></textarea> </p> </form> <script type="text/javascript"> function getFormInfo(){ var info; var f = document.forms["formA"]; //Get a reference to the form via id. info = "elements: " + f.elements + "\n" + "length: " + f.length + "\n" + "name: " + f.name + "\n" + "charset: " + f.acceptCharset+ "\n" + "action: " + f.action + "\n" + "enctype: " + f.enctype + "\n" + "encoding: " + f.encoding + "\n" + "method: " + f.method + "\n" + "target: " + f.target; document.forms["formA"].elements['tex'].value = info; } function setFormInfo(f){ //Argument is a reference to the form. f.method = "GET"; f.action = "/cgi-bin/evil_executable.cgi"; f.name = "totally_new"; } </script>
Submit a form in a popup window:
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>MDN Example</title> <script type="text/javascript"> function popupSend (oFormElement) { if (oFormElement.method && oFormElement.method.toLowerCase() !== "get") { console.error("This script supports the GET method only."); return; } var oField, sFieldType, nFile, sSearch = ""; for (var nItem = 0; nItem < oFormElement.elements.length; nItem++) { oField = oFormElement.elements[nItem]; if (!oField.hasAttribute("name")) { continue; } sFieldType = oField.nodeName.toUpperCase() === "INPUT" ? oField.getAttribute("type").toUpperCase() : "TEXT"; if (sFieldType === "FILE") { for (nFile = 0; nFile < oField.files.length; sSearch += "&" + escape(oField.name) + "=" + escape(oField.files[nFile++].name)); } else if ((sFieldType !== "RADIO" && sFieldType !== "CHECKBOX") || oField.checked) { sSearch += "&" + escape(oField.name) + "=" + escape(oField.value); } } open(oFormElement.action.replace(/(?:\?.*)?$/, sSearch.replace(/^&/, "?")), "submit-" + (oFormElement.name || Math.floor(Math.random() * 1e6)), "resizable=yes,scrollbars=yes,status=yes"); } </script> </head> <body> <form name="yourForm" action="test.php" method="get" onsubmit="popupSend(this); return false;"> <p>First name: <input type="text" name="firstname" /><br /> Last name: <input type="text" name="lastname" /><br /> Password: <input type="password" name="pwd" /><br /> <input type="radio" name="sex" value="male" /> Male <input type="radio" name="sex" value="female" /> Female</p> <p><input type="checkbox" name="vehicle" value="Bike" />I have a bike<br /> <input type="checkbox" name="vehicle" value="Car" />I have a car</p> <p><input type="submit" value="Submit" /></p> </form> </body> </html>
Submitting forms and uploading files using XMLHttpRequest
If you want to know how to serialize and submit a form using the XMLHttpRequest
API, please read this paragraph.
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLFormElement' in that specification. |
Living Standard | The following method has been added: requestAutocomplete() . |
HTML5 The definition of 'HTMLFormElement' in that specification. |
Recommendation | The elements properties returns an HTMLFormControlsCollection instead of a raw HTMLCollection . This is mainly a technical change. The following method has been added: checkValidity() . The following properties have been added: autocomplete , noValidate , and encoding . |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLFormElement' in that specification. |
Obsolete | No change |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLFormElement' in that specification. |
Obsolete | Initial definition |
Browser compatibility
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
See also
- The HTML element implementing this interface:
<form>
.
Document Tags and Contributors
Tags:
Contributors to this page:
chrisdavidmills,
Sebastianz,
trusktr,
erikadoyle,
Lcng,
shtarbanov,
slimsag,
jonathanKingston,
teoli,
jpmedley,
kscarfone,
Sheppy,
ethertank,
fusionchess,
jswisher,
Brettz9,
WEStafford,
Mgjbot,
Asztal,
Takenbot,
RobG,
William E,
GSchizas,
Dria
Last updated by:
chrisdavidmills,