私はこれがこの質問に対してたくさんの素晴らしい答えを持っていることを知っていますが、ブラウジング中にこれを見つけました、そしてそれは本当に使いやすいと思います。私が探している誰かのために共有したいと思いました。
HTML:
<fieldset>
<!-- these will be affected by check all -->
<div><input type="checkbox" class="checkall"> Check all</div>
<div><input type="checkbox"> Checkbox</div>
<div><input type="checkbox"> Checkbox</div>
<div><input type="checkbox"> Checkbox</div>
</fieldset>
<fieldset>
<!-- these won't be affected by check all; different field set -->
<div><input type="checkbox"> Checkbox</div>
<div><input type="checkbox"> Checkbox</div>
<div><input type="checkbox"> Checkbox</div>
</fieldset>
jQuery:
$(function () {
$('.checkall').on('click', function () {
$(this).closest('fieldset').find(':checkbox').prop('checked', this.checked);
});
});
リファレンス:
jQueryを使用した最も簡単な「すべてチェック」
class
代わりにタイトルを更新してみましょうname
か?