标签:
问题描述:全选功能
代码:
$("input[name=‘onday[]‘]").each(function(){ $(this).attr(‘checked‘,‘checked‘); });
第一次 全选和全不选 能很好的工作,但第二次开始 不能全选
将checked改为 true false也不好使
网搜之,说是jQuery版本问题,且使用prop能很好地工作,代码更简练
$("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
jQuery 1.9版本以上多次点击checkbox无法选中的问题
标签:
原文地址:http://my.oschina.net/jingxing05/blog/526849