概要
forms
は現在の文書のフォーム要素のリストを返します。
構文
nodeList = document.forms
例 : フォーム情報の取得
<!DOCTYPE html> <html lang="ja"> <head> <title> document.forms サンプル</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>
例 2: フォーム内要素の取得
var selectForm = document.forms[index]; var selectFormElement = document.forms[index].elements[index];