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.

HTMLFormElement.elements

概要

elements は、form 要素に含まれるすべてのフォームコントロールを含む HTMLCollection を返します。

index 、または要素の nameid の何れかを使って個々の要素にアクセスすることができます。

構文

nodeList =HTMLFormElement.elements

var inputs = document.getElementById("form1").elements;
var inputByIndex = inputs[2];
var inputByName = inputs["login"];

仕様書

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

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