checkbox改成radio效果,单选,取消

 $(function () {
            var allBox = $(":checkbox");
            allBox.click(function () {
               if(this.checked){
                   allBox.removeAttr("checked");
                   $(this).attr("checked", "checked");
                 }
            });
        });

你可能感兴趣的:(checkbox改成radio效果,单选,取消)