--- title: Document.forms slug: Web/API/Document/forms tags: - API - DOM - Document - HTML DOM - HTML フォーム - フォーム - プロパティ - リファレンス translation_of: Web/API/Document/forms ---

{{domxref("Document")}} インターフェイスの forms プロパティは読み取り専用で、文書内に含まれるすべての {{HTMLElement("form")}} を列挙した {{domxref("HTMLCollection")}} を返します。

メモ: 同様に、{{domxref("HTMLFormElement.elements")}} プロパティを使用すると、フォームコンポーネントのユーザー入力要素のリストにアクセスすることができます。

構文

collection = document.forms;

文書のすべてのフォームを列挙する {{domxref("HTMLCollection")}} オブジェクトです。コレクションのそれぞれの項目は、単一の <form> 要素を表す {{domxref("HTMLFormElement")}} です。

文書にフォームがない場合、返されるコレクションは空で、長さはゼロです。

フォーム情報の取得

<!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>

フォーム内要素の取得

var selectForm = document.forms[index];
var selectFormElement = document.forms[index].elements[index];

名前付きフォームへのアクセス

<!DOCTYPE html>
<html lang="en">
<head>
  <title>document.forms example</title>
</head>

<body>

<form name="login">
  <input name="email" type="email">
  <input name="password" type="password">
  <button type="submit">Log in</button>
</form>

<script>
  var loginForm = document.forms.login; // Or document.forms['login']
  loginForm.elements.email.placeholder = 'test@example.com';
  loginForm.elements.password.placeholder = 'password';
</script>
</body>
</html>

仕様書

仕様書 状態 コメント
{{SpecName('HTML WHATWG', '#dom-document-forms', 'Document.forms')}} {{ Spec2('HTML WHATWG') }}
{{SpecName('DOM2 HTML', 'html.html#ID-1689064', 'Document.forms')}} {{ Spec2('DOM2 Events') }} 初回定義

ブラウザーの対応

{{Compat("api.Document.forms")}}

関連情報

{{APIRef("DOM")}}