Select remove() 方法

Select 对象参考手册 Select 对象

定义和用法

remove() 方法用于从下拉列表删除选项。

语法

selectObject.remove(index)

参数 描述
index 必需。规定要删除的选项的索引号。

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 remove() 方法


实例

下面的例子可从列表中删除被选的选项:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <script>
    function removeOption() {
      var x = document.getElementById("mySelect");
      x.remove(x.selectedIndex);
    }
  </script>
</head>
<body>

  <form>
    <select id="mySelect">
  <option>Apple</option>
  <option>Pear</option>
  <option>Banana</option>
  <option>Orange</option>
</select>
    <input type="button" onclick="removeOption()" value="移除选项">
  </form>

</body>
</html>

尝试一下 »


更多实例

从下拉列表中删除最后的选项

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <script>
    function removeLastOption() {
      var x = document.getElementById("mySelect");
      if (x.length > 0) {
        x.remove(x.length - 1);
      }
    }
  </script>
</head>
<body>

  <form>
    <select id="mySelect">
  <option>Apple</option>
  <option>Pear</option>
  <option>Banana</option>
  <option>Orange</option>
</select>
    <input type="button" onclick="removeLastOption()" value="移除最后一个选项">
  </form>

</body>
</html>

尝试一下 »


Select 对象参考手册 Select 对象