源碼: <input type="checkbox" id="cleckAll" />全選 <div class="list"> <input type="checkbox" />覆選一 <input type="checkbox" />覆選二 <input type="checkbox" />覆選 ...
源碼:
<input type="checkbox" id="cleckAll" />全選
<div class="list">
<input type="checkbox" />覆選一
<input type="checkbox" />覆選二
<input type="checkbox" />覆選三
</div>
腳本:
$('#cleckAll').click(function(){
if($(this).is(':checked')){
$('.list input').prop('checked',true);
}else{
$('.list input').prop('checked',false);
}
})
註:這裡用prop() 就別用 attr() 了, 否則你會很迷惘...
解:問題源了jQuery的版本問題,就不再詳解了...