Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.forms

概要

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];

仕様

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank, Okome
 最終更新者: khalid32,