問題描述:全選功能 html
代碼: jquery
$("input[name='onday[]']").each(function(){ $(this).attr('checked','checked'); });
第一次 全選和全不選 能很好的工做,但第二次開始 不能全選 this
將checked改成 true false也很差使 spa
網搜之,說是jQuery版本問題,且使用prop能很好地工做,代碼更簡練 code
$("input[name='onday[]']").prop('checked',$('#checkedall').prop('checked'));
參考: http://www.imuum.com/jquery-more-than-1-9-times-click-on-the-checkbox-cannot-be-selected.html htm