radio 默认选中, 第二次点击选中的按钮 改变为不选中,并获取值

来源:互联网 发布:90年代网络流行歌曲 编辑:程序博客网 时间:2024/05/01 02:12
 
         $("[name=sexuality]").click(function(){
            if($(this).attr("id")=="true"){
                      $(this).removeAttr("checked");
                      $("[name=sexuality]").each(function(){
                            $(this).attr("id",'false');
                     });
                  }else{
                      $(this).attr("checked",'true');
                      $("[name=sexuality]").each(function(){
                            $(this).attr("id",'false');
                     });
                     $(this).attr("id",'true');
                     }

        });


获取值


var sex="";
         $("[name=sexuality]").each(function(){
                 if($(this).attr("id")=="true"){
                     sex=$(this).val();
                 }
         });


原创粉丝点击