The HTMLSelectElement.namedItem()
method returns the HTMLOptionElement
corresponding to the HTMLOptionElement
whose name
or id
match the specified name, or null
if no option matches.
In JavaScript, using the array bracket syntax with a String
, like selectElt["value"]
is equivalent to selectElt
.namedItem("value")
.
var item = collection.namedItem(str); var item = collection[str];
DOMString
HTMLOptionElement
.<form> <select id="myFormControl"> <option id="o1">Opt 1</option> <option id="o2">Opt 2</option> </select> </form>
elem1 = document.forms[0]["myFormControl"]["o1"]; // Returns the HTMLOptionElement representing #o1
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLSelectElement.namedItem()' in that specification. | Living Standard | No change since the latest snapshot, HTML5. |
HTML5 The definition of 'HTMLSelectElement.namedItem()' in that specification. | Recommendation | Initial definition, snapshot of HTML Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes
|
4 | Yes
|
Yes | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | ? | ? |
HTMLSelectElement
that implements it.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/namedItem