jQuery check/uncheck radio button onclick

前端 未结 24 2649
滥情空心
滥情空心 2020-12-01 05:23

I have this code to check/uncheck a radio button onclick.

I know it is not good for the UI, but I need this.

$(\'#radioinstant\').click(function() {          


        
24条回答
  •  独厮守ぢ
    2020-12-01 05:42

    $(document).ready(function(){ $("input:radio:checked").data("chk",true);

    $("input:radio").click(function(){
        $("input[name='"+$(this).attr("name")+"']:radio").not(this).removeData("chk");
    
        $(this).data("chk",!$(this).data("chk"));
    
        $(this).prop("checked",$(this).data("chk"));
    });
    

    });

提交回复
热议问题