将页面中所有的checkbox设成单选得

$(function () {
var allBox = $(":checkbox");
allBox.click(function () {
allBox.removeAttr("checked");
$(this).attr("checked", "checked");
});
});
 
 
$(function(){
$(':checkbox[name=jcxflIds]').each(function(){
$(this).click(function(){
if($(this).attr('checked')){
$(':checkbox[name=jcxflIds]').removeAttr('checked');
$(this).attr('checked','checked');
}
});
});
 
});
posted @ 2019-04-12 22:25  那些年的代码  阅读(1223)  评论(0编辑  收藏  举报