Dokument: forms-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

We’d love to hear your thoughts on the next set of proposals for the JavaScript language. You can find a description of the proposals here.
Please take two minutes to fill out our short survey.

Die schreibgeschützte forms-Eigenschaft der Document-Schnittstelle gibt eine HTMLCollection zurück, die alle <form>-Elemente im Dokument auflistet.

Hinweis: Sie können auf ähnliche Weise eine Liste der Benutzereingabe-Komponenten eines Formulars über die HTMLFormElement.elements-Eigenschaft zugreifen.

Wert

Ein HTMLCollection-Objekt, das alle Formulare des Dokuments auflistet. Jedes Element in der Sammlung ist ein HTMLFormElement, das ein einzelnes <form>-Element darstellt.

Falls das Dokument keine Formulare enthält, ist die zurückgegebene Sammlung leer und hat eine Länge von null.

Beispiele

Formularinformationen abrufen

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

Ein Element innerhalb eines Formulars abrufen

js
const selectForm = document.forms[index];
const selectFormElement = document.forms[index].elements[index];

Zugriff auf benannte Formulare

html
<!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>
      const loginForm = document.forms.login; // Or document.forms['login']
      loginForm.elements.email.placeholder = "test@example.com";
      loginForm.elements.password.placeholder = "password";
    </script>
  </body>
</html>

Spezifikationen

Specification
HTML
# dom-document-forms-dev

Browser-Kompatibilität

Siehe auch