The HTMLSelectElement interface represents a <select> HTML Element. These elements also share all of the properties and methods of other HTML elements via the HTMLElement interface.
Properties
This interface inherits the properties of HTMLElement, and of Element and Node.
HTMLSelectElement.autofocus- Is a
Booleanthat reflects theautofocusHTML attribute, which indicates whether the control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form-associated element in a document can have this attribute specified. HTMLSelectElement.disabled- Is a
Booleanthat reflects thedisabledHTML attribute, which indicates whether the control is disabled. If it is disabled, it does not accept clicks. HTMLSelectElement.form只读- Returns a
HTMLFormElementrepresenting the form that this element is associated with. If this element is a descendant of a form element, then this attribute is the ID of that form element. If the element is not a descendant of a form element, then the attribute can be the ID of any form element in the same document. HTMLSelectElement.labels只读- Returns a
NodeListcontaining the list of label elements associated with this select element. HTMLSelectElement.length- Is an
unsigned longrepresenting the number of<option>elements in thisselectelement. HTMLSelectElement.multiple- Is a
Booleanthat reflects themultipleHTML attribute, which indicates whether multiple items can be selected. HTMLSelectElement.name- Is a
DOMStringthat reflects thenameHTML attribute, containing the name of this control used by servers and DOM search functions. HTMLSelectElement.options只读- 只读属性。返回当前select元素包括的option元素对象的集合。
HTMLSelectElement.required- Is a
Booleanthat reflects therequiredHTML attribute, which indicates whether the user is required to select a value before submitting the form. HTMLSelectElement.selectedIndex- 此属性返回一个长整型数值,代表第一个被选中的option元素。-1代表没有元素被选中。
HTMLSelectElement.size- Is a
longthat reflects thesizeHTML attribute, which contains the number of visible items in the control. The default is 1, unlessmultipleis true, in which case it is 4. HTMLSelectElement.type只读- Returns a
DOMStringthe form control's type. Whenmultipleistrue, it returns"select-multiple"; otherwise, it returns"select-one". HTMLSelectElement.validationMessage只读- Returns a
DOMStringcontaining a localized message that describes the validation constraints that the control does not satisfy (if any). This attribute is the empty string if the control is not a candidate for constraint validation (willValidateis false), or it satisfies its constraints. HTMLSelectElement.validity只读- Returns a
ValidityStaterepresenting the validity state that this control is in. HTMLSelectElement.value- Is a
DOMStringwith the value of this form control, that is, of the first selected option. HTMLSelectElement.willValidate只读- Is a
Booleanthat indicates whether the button is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.
Methods
This interface inherits the methods of HTMLElement, and of Element and Node.
HTMLSelectElement.add()- Adds an element to the collection of
optionelements for thisselectelement. HTMLSelectElement.blur()- Removes input focus from this element. This method is now implemented on
HTMLElement. HTMLSelectElement.checkValidity()- Checks whether the element has any constraints and whether it satisfies them. If the element fails its constraints, the browser fires a cancelable
invalidevent at the element (and returnsfalse). HTMLSelectElement.focus()- Gives input focus to this element. This method is now implemented on
HTMLElement. HTMLSelectElement.item()- Gets an item from the options collection for this
<select>element. You can also access an item by specifying the index in array-style brackets or parentheses, without calling this method explicitly. HTMLSelectElement.namedItem()- Gets the item in the options collection with the specified name. The name string can match either the
idor thenameattribute of an option node. You can also access an item by specifying the name in array-style brackets or parentheses, without calling this method explicitly. HTMLSelectElement.remove()- Removes the element at the specified index from the options collection for this select element.
HTMLSelectElement.setCustomValidity()- Sets the custom validity message for the selection element to the specified message. Use the empty string to indicate that the element does not have a custom validity error.
Example
Get information about the selected option
/* assuming we have the following HTML <select id='s'> <option>First</option> <option selected>Second</option> <option>Third</option> </select> */ var select = document.getElementById('s'); // return the index of the selected option alert(select.selectedIndex); // 1 // return the value of the selected option alert(select.options[select.selectedIndex].value) // Second
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard HTMLSelectElement |
Living Standard | Since the latest snapshot, HTML5, it adds the autocomplete property and the reportValidity() method. |
| HTML5 HTMLSelectElement |
Recommendation | Is a snapshot of HTML Living Standard. It adds the autofocus, form, required, labels, selectedOptions, willValidate, validity and validationMessage properties.The tabindex property and the blur() and focus() methods have been moved to HTMLElement.The methods item(), namedItem(), checkValidity() and setCustomValidity(). |
| Document Object Model (DOM) Level 2 HTML Specification HTMLSelectElement |
Obsolete | options now returns an HTMLOptionsCollection.length now returns an unsigned long. |
| Document Object Model (DOM) Level 1 Specification HTMLSelectElement |
Obsolete | Initial definition. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | 1.0 | 1.0 (1.7 or earlier) | 1.0 | 1.0 | 1.0 |
item() and namedItem() |
(Yes) | 4.0 (2.0) | ? | (Yes) | (Yes) |
setCustomValidity(), checkValidity(), willValidate, validationMessage, validity |
(Yes) | 4.0 (2.0) | ? | (Yes) | ? |
selectedOptions |
(Yes) | 26 (26) | ? | (Yes) | (Yes) |
labels |
(Yes) | 未实现 (查看 bug 556743) | ? | (Yes) | (Yes) |
| Feature | Android | Chrome | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | 1.0 | 1.0 | 1.0 (1) | 1.0 | 1.0 | 1.0 | 1.0 |
item() and namedItem() |
? | ? | 4.0 (2.0) | 1.0 | ? | ? | (Yes) |
setCustomValidity(), checkValidity(), willValidate, validationMessage, validity |
? | ? | 4.0 (2.0) | 1.0 | ? | ? | ? |
selectedOptions |
? | ? | 26.0 (26) | 1.2 | ? | ? | (Yes) |
labels |
? | ? | 未实现 (查看 bug 556743) | 未实现 (查看 bug 556743) | ? | ? | (Yes) |
See also
- The
<select>HTML element, implementing this interface.