jQuery 1.9版本以上屢次點擊checkbox沒法選中的問題

問題描述:全選功能 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'));



so之後像checkbox,select 這種請一概使用 prop方法,good。

參考: http://www.imuum.com/jquery-more-than-1-9-times-click-on-the-checkbox-cannot-be-selected.html htm

相關文章
相關標籤/搜索