Jquery-选择框点击勾选或者取消

 

1:单选框,直接定位到属性名称

复制代码
$(document).ready(function(){  
    var old = null; //用来保存原来的对象  
    $("input[name='sex']").each(function(){//循环绑定事件  
        if(this.checked){  
            this.checked= false; 
        }else{
            this.checked = true;
        }  
    });  
});  
复制代码

 

 

 

2.根据iD

复制代码
function select_input(hid){
    jQuery("#"+hid).each(function(){//循环绑定事件 
            if(this.checked){  
                this.checked = false; 
            }else{
                this.checked = true;
            }
        });  
}
复制代码

 

posted @   243573295  阅读(1108)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示