jeesite用户设置页面角色复选框单选

$(function(){
		        $(':checkbox[type="checkbox"]').each(function(){
		            $(this).click(function(){
		                if($(this).attr('checked')){
		                    $(':checkbox[type="checkbox"]').removeAttr('checked');
		                    $(this).attr('checked','checked');
		                    /* alert(this.id); */ /*如果不注释,在页面上会有消息框弹出*/
		                }
		            });
		        });
		    }); 

*
方法来自CSDN某位作者,时间长了忘记是谁了。

你可能感兴趣的:(jeesite用户设置页面角色复选框单选)