当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Select remove()用法及代码示例


HTML DOM中的Select remove()方法用于从下拉列表中删除选项。此方法接受索引号作为参数,以将选项从所需位置删除。

用法:

selectObject.remove(index)

参数:它包含单个参数索引,该参数是强制性的,用于指定要删除的元素的索引位置。


以下示例程序旨在说明HTML DOM中的Select remove()方法:

例:本示例使用select remove()方法从下拉列表中删除选定的选项。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        HTML DOM Select remove Method 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="font-family:Impact;"> 
        Select remove Method 
    </h2><br> 
      
    Select your preferred course from 
    the drop-down list:<br> 
      
    <select id="myCourses" size="8"> 
        <option value="C++">c++</option> 
        <option value="Placement">Placement</option> 
        <option value="Java">Java</option> 
        <option value="Python">Python</option> 
    </select> 
      
    <p> 
        To remove a selected course from the dropdown  
        list, double-click the "Remove" button. 
    </p> 
      
    <button ondblclick="myGeeks()"> 
        Remove 
    </button> 
      
    <!-- Script to use DOM Select remove Method -->
    <script> 
        function myGeeks() { 
            var d = document.getElementById("myCourses"); 
            d.remove(d.selectedIndex); 
        } 
    </script> 
</body> 
  
</html>                                                  

输出:

  • 单击按钮之前:
  • 单击按钮后:

支持的浏览器:下面列出了Select remove()方法支持的浏览器:

  • 苹果Safari
  • IE浏览器
  • 火狐浏览器
  • 谷歌浏览器
  • Opera


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Select remove() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。