HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTML DOM Select remove()メソッド


HTML DOM select remove()メソッドは、HTMLドキュメントのドロップダウンリストから新しいオプションを削除します。

構文

以下は構文です-

object.remove(index)

ここで、indexは、ドロップダウンリストから削除されるオプションのインデックスを表します。

HTML DOM select remove()メソッドの例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   html{
      height:100%;
   }
   body{
      text-align:center;
      color:#fff;
      background: radial-gradient( circle farthest-corner at 23.1% 64.6%, rgba(129,125,254,1) 0%, rgba(111,167,254,1) 90% ) no-repeat;
      height:100%;
   }
   p{
      font-weight:700;
      font-size:1.1rem;
   }
   .drop-down{
      display:block;
      width:35%;
      border:2px solid #fff;
      font-weight:bold;
      padding:2px;
      margin:1rem auto;
      outline:none;
   }
   .btn{
      background:orange;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      font-weight:bold;
      outline:none;
      cursor:pointer;
   }
   .show{
      font-size:1.5rem;
      font-weight:bold;
   }
</style>
</head>
<body>
<h1>DOM Select remove() method Demo</h1>
<p>Hi, Select your favourite subject:</p>
<select class='drop-down' name="Drop Down List">
<option>Physics</option>
<option>Biology</option>
<option>Maths</option>
</select>
<button type="button" onclick="addSubject()" class="btn">Remove Physics Subject</button>
<div class="show"></div>
<script>
   function addSubject() {
      var dropDown = document.querySelector(".drop-down");
      document.querySelector(".show").innerHTML="Removed Physics Subject";
      dropDown.remove(0);
   }
</script>
</body>
</html>

出力

これにより、次の出力が生成されます-

HTML DOM Select remove()メソッド

物理学の主題を削除」をクリックします 」をクリックして、ドロップダウンリストの現在の「物理学」である最初の主題を削除します。

HTML DOM Select remove()メソッド


  1. HTML DOM focus()メソッド

    HTML DOM focus()メソッドは、HTML要素にフォーカスを与えるために使用されます。フォーカスをすべてのHTML要素に適用することはできません。例:タグにフォーカスすることはできません。要素からフォーカスを削除するには、blur()メソッドを使用します。 構文 以下は構文です- HTMLElementObject.focus() 例 focus()メソッドの例を見てみましょう- <!DOCTYPE html> <html> <head> <style>    input[type=text]:focus, p:

  2. HTML DOM Textarea select()メソッド

    HTML DOM Textarea select()メソッドは、HTMLドキュメントのテキスト領域のコンテンツを選択します。 構文 以下は構文です- object.select() HTML DOM Textarea select()メソッドの例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh;    }   &n