1. ホーム
  2. jquery

[解決済み] jQueryチェックボックスのイベント処理

2022-04-27 13:28:14

質問

次のようなものがあります。

<form id="myform">
   <input type="checkbox" name="check1" value="check1">
   <input type="checkbox" name="check2" value="check2">
</form>

jQueryを使って、どのように 任意の で発生するイベントをチェックします。 myform で、どのチェックボックスがトグルされたのか(そしてトグルされたのがオンなのかオフなのかを知ることができる)?

解決方法は?

$('#myform :checkbox').change(function() {
    // this will contain a reference to the checkbox   
    if (this.checked) {
        // the checkbox is now checked 
    } else {
        // the checkbox is now no longer checked
    }
});