Nossos voluntários ainda não traduziram este artigo para o Português (do Brasil) . Junte-se a nós e ajude a fazer o trabalho!
forms
returns a collection (an HTMLCollection
) of the <form>
elements within the current document.
Syntax
collection = document.forms;
Example: Getting form information
<!DOCTYPE html> <html lang="en"> <head> <title>document.forms example</title> </head> <body> <form id="robby"> <input type="button" onclick="alert(document.forms[0].id);" value="robby's form" /> </form> <form id="dave"> <input type="button" onclick="alert(document.forms[1].id);" value="dave's form" /> </form> <form id="paul"> <input type="button" onclick="alert(document.forms[2].id);" value="paul's form" /> </form> </body> </html>
Example 2: Getting an element from within a form
var selectForm = document.forms[index]; var selectFormElement = document.forms[index].elements[index];
Specifications
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'Document.forms' in that specification. |
Living Standard | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'Document.forms' in that specification. |
Recommendation | Initial definition. |
See also
Etiquetas do documento e colaboradores
Etiquetas:
Colaboradores desta página:
dbrew,
cvrebert,
teoli,
Delapouite,
kosvrouvas,
kscarfone,
Khodaidad_Basharmand,
ethertank,
Sheppy,
ziyunfei,
Marcoos,
Matej Lednar,
Piopier,
Mgjbot,
George3,
Jabez,
Ptak82,
Dria,
JesseW
Última atualização por:
dbrew,