Baseline Widely available
forms
ë íì¬ documentì ì¡´ì¬íë <form>
element ë¤ì´ ë´ê¸´ collection (an HTMLCollection
)ì ë°íí©ëë¤.
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];
ëª
ì¸ì See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4