easyui复选框实现单选框

$(':checkbox[name=primary_key_flag]').each(function(){
$(this).click(function(){
if(this.checked){
$(':checkbox[name=primary_key_flag]').removeAttr('checked');
this.checked=true;
}
});
});

猜你喜欢

转载自www.cnblogs.com/zhuyeshen/p/10871135.html