チェックボックスチェックイベントリスナー質問する

チェックボックスチェックイベントリスナー質問する

最近、Chrome プラグイン API に取り組んでおり、Web サイトの管理を楽にするプラグインの開発を検討しています。

今、私がやりたいのは、特定のチェックボックスがチェックされたときにイベントを起動することです。この Web サイトは私のものではないため、コードを変更することはできず、Chrome API を使用しています。主な問題の 1 つは、ID ではなく名前があることです。「名前」の特定のチェックボックスがチェックされたら、関数を起動できるかどうか疑問に思っていました。

ベストアンサー1

短い答え:changeイベント。実用的な例をいくつか示します。質問を読み間違えたので、プレーンな JavaScript とともに jQuery の例も含めます。ただし、jQuery を使用することで得られるものはほとんどありません。

単一のチェックボックス

使用querySelector

var checkbox = document.querySelector("input[name=checkbox]");

checkbox.addEventListener('change', function() {
  if (this.checked) {
    console.log("Checkbox is checked..");
  } else {
    console.log("Checkbox is not checked..");
  }
});
<input type="checkbox" name="checkbox" />

jQuery を使用した単一のチェックボックス

$('input[name=checkbox]').change(function() {
  if ($(this).is(':checked')) {
    console.log("Checkbox is checked..")
  } else {
    console.log("Checkbox is not checked..")
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<input type="checkbox" name="checkbox" />

複数のチェックボックス

チェックボックスのリストの例です。複数の要素を選択するには、querySelectorAllquerySelectorの代わりにArray.filterそしてArray.mapチェックされた値を抽出します。

// Select all checkboxes with the name 'settings' using querySelectorAll.
var checkboxes = document.querySelectorAll("input[type=checkbox][name=settings]");
let enabledSettings = []

/*
For IE11 support, replace arrow functions with normal functions and
use a polyfill for Array.forEach:
https://vanillajstoolkit.com/polyfills/arrayforeach/
*/

// Use Array.forEach to add an event listener to each checkbox.
checkboxes.forEach(function(checkbox) {
  checkbox.addEventListener('change', function() {
    enabledSettings = 
      Array.from(checkboxes) // Convert checkboxes to an array to use filter and map.
      .filter(i => i.checked) // Use Array.filter to remove unchecked checkboxes.
      .map(i => i.value) // Use Array.map to extract only the checkbox values from the array of objects.
      
    console.log(enabledSettings)
  })
});
<label>
   <input type="checkbox" name="settings" value="forcefield">
   Enable forcefield
</label>
<label>
  <input type="checkbox" name="settings" value="invisibilitycloak">
  Enable invisibility cloak
</label>
<label>
  <input type="checkbox" name="settings" value="warpspeed">
  Enable warp speed
</label>

jQuery を使用した複数のチェックボックス

let checkboxes = $("input[type=checkbox][name=settings]")
let enabledSettings = [];

// Attach a change event handler to the checkboxes.
checkboxes.change(function() {
  enabledSettings = checkboxes
    .filter(":checked") // Filter out unchecked boxes.
    .map(function() { // Extract values using jQuery map.
      return this.value;
    }) 
    .get() // Get array.
    
  console.log(enabledSettings);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<label>
   <input type="checkbox" name="settings" value="forcefield">
   Enable forcefield
</label>
<label>
  <input type="checkbox" name="settings" value="invisibilitycloak">
  Enable invisibility cloak
</label>
<label>
  <input type="checkbox" name="settings" value="warpspeed">
  Enable warp speed
</label>

おすすめ記事