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

2024年11月16日 08:27
有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');
});