Formulare in HTML:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <form action="" name="hello" id="login"> <input type="text" placeholder="demo@email.com" <button>提交</button> </form> </body> </html>
Verwenden Sie document.forms
, um alle Formulare der aktuellen Seite abzurufendocument.forms
获取当前页面的所有表单
document.forms[0]
获取当前页面的第一个表单
document.forms['hello']
通过表单的name属性获取表单
document.forms['login']
document.forms[0]
Erstes Formular der aktuellen Seite abrufendocument.forms['hello']</ code >Holen Sie sich das Formular über das Namensattribut des Formulars</a></p>🎜<li>🎜<code>document.forms['login']
Holen Sie sich das Formular über das ID-Attribut des Formulars🎜🎜🎜🎜<script> //form console.log(document.forms); // <form action="" name="hello" id="login"> console.log(document.forms[0]); console.log(document.forms['hello']); console.log(document.forms['login']); console.log(document.forms.item(0)); console.log(document.forms.item("hello")); console.log(document.forms.item("login")); //推荐 id console.log(document.forms.namedItem("login")); console.log(document.forms.hello); console.log(document.forms.login); </script>
Das obige ist der detaillierte Inhalt vonSo erhalten Sie Formularelemente in JavaScript. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!