--- title: HTMLFormElement.elements slug: Web/API/HTMLFormElement/elements translation_of: Web/API/HTMLFormElement/elements ---
elements 返回一个 {{domxref("HTMLFormControlsCollection")}} ({{ HTMLVersionInline(4) }} HTMLCollection
) 其中包含FORM的所有控件。需要注意的是,其中不包括
image的type等于
input
元素。
nodeList = HTMLFormElement.elements
var inputs = document.getElementById("form1").elements; var inputByIndex = inputs[2]; var inputByName = inputs["login"];