HTMLFormControlsCollection
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.
The HTMLFormControlsCollection
interface represents a collection of HTML form control elements, returned by the HTMLFormElement
interface's elements
property.
The collection returned by HTMLFormElement.elements
includes the form's associated listed form controls. See HTMLFormElement.elements
for the list of listed form controls and an explanation of form association.
This interface replaces one method from HTMLCollection
, on which it is based.
Instance properties
This interface inherits the properties of its parent, HTMLCollection
.
Instance methods
This interface inherits the methods of its parent, HTMLCollection
.
HTMLFormControlsCollection.namedItem()
-
Returns the
RadioNodeList
or theElement
in the collection whosename
orid
matches the specified name, ornull
if no nodes match. Note that this version ofnamedItem()
hides the one inherited fromHTMLCollection
. Like that method, using the JavaScript array bracket syntax with aString
, as incollection["value"]
, is equivalent tocollection.namedItem("value")
.
Specifications
Specification |
---|
HTML> # htmlformcontrolscollection> |
Browser compatibility
Loading…