求助AngularJS的复选框实现单选的功能

2024-11-16 08:27:47
推荐回答(1个)
回答(1):







//方法1
$('inputp[type=checkbox]').click(function(){
 $(this).attr('checked','checked').siblings().removeAttr('checked');
});
//方法2
$('inputp[name=checkbox]').click(function(){
 $(this).attr('checked','checked').siblings().removeAttr('checked');
});