自定义Checkbox的checked与unchecked

最近项目中,要用到互斥的Checkbox,所以自己写了个方法:

1.首先是用如下方法:

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

发现这样写的代码重用性很差,所以,做如下改进

(function(){
    $.fn.extend({
        checked_unchecked:function(){
            var _self = this;
            if(this!=undefined && this!=null){
                this.each(function(){
                    $(this).live("click",function(){
                        if($(this).attr('checked')){
                            _self.removeAttr('checked');
                            $(this).attr('checked','checked');
                        }
                    });
                });
            }
        }
    });
})(jQuery);

调用:

$(function(){
        $(':checkbox[name=checkbox2]').checked_unchecked();
        $(':checkbox[name=checkbox3]').checked_unchecked();
});


如果有版本的问题,需要作以下改动:

/**
 * CheckBox的互斥选择插件
 */
(function(){
    $.fn.extend({
        checked_unchecked:function(){
            
            if(this!=undefined && null!=this){
                
                var _self = this;
                
                this.each(function(){
                    /**
                     * 判断当前使用的JQuery的版本是否是>=1.9
                     * 因为1.9以上的版本中移除了live方法
                     * 获取Checkbox的checked属性也建议使用prop
                     */
                    if($.fn.jquery>="1.9"){
                        $(this).on("click",function(){
                            if($(this).prop("checked")==true){
                                _self.prop("checked",false);
                                $(this).prop("checked",true);
                            }
                        });
                    }else{
                        $(this).live("click",function(){
                            if($(this).attr('checked')){
                                _self.removeAttr('checked');
                                $(this).attr('checked','checked');
                            }
                        });
                    }
                });
            }
        }
    });
})(jQuery);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值