ここで私のjQueryで何が機能していないのかを理解しようとしています..
HTML
<ul>
<div class="filter-all">
<div class="filter-select-all">Select All</div> |
<div class="filter-select-none">Select None</div>
</div>
<li><label><input type="checkbox">Food</label></li>
<li><label><input type="checkbox">Meeting</label></li>
<li><label><input type="checkbox">Music</label></li>
<li><label><input type="checkbox">Outdoors</label></li>
</ul>
jQuery
$('.filter-select-all').click(function() {
$(this).closest('ul').find(':checkbox').attr('checked', this.checked);
});
デモ: http://jsfiddle.net/MDNmx/
私は最も近いのではなく、あらゆる種類の異なる方法を試しました..
助けてくれてありがとう:)