當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。