HTMLSelectElement.remove() - Web APIs 编辑
The HTMLSelectElement.remove()
method removes the element at the specified index from the options collection for this select element.
Syntax
collection.remove(index);
Parameters
index
is a long for the index of theHTMLOptionElement
to remove from the collection. If the index is not found the method has no effect.
Example
var sel = document.getElementById("existingList");
sel.remove(1);
/*
Takes the existing following select object:
<select id="existingList" name="existingList">
<option value="1">Option: Value 1</option>
<option value="2">Option: Value 2</option>
<option value="3">Option: Value 3</option>
</select>
And changes it to:
<select id="existingList" name="existingList">
<option value="1">Option: Value 1</option>
<option value="3">Option: Value 3</option>
</select>
*/
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLSelectElement.remove()' in that specification. | Living Standard | |
HTML5 The definition of 'HTMLSelectElement.remove()' in that specification. | Recommendation | Is a snapshot of HTML Living Standard. |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLSelectElement.remove()' in that specification. | Obsolete | |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLSelectElement.remove()' in that specification. | Obsolete | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
ChildNode.remove
, the method that gets called when remove is called without arguments on aHTMLSelectElement
.HTMLSelectElement
that implements it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论