jQuery radio onchange toggle class of parent element?

前端 未结 7 957
无人及你
无人及你 2021-01-11 19:28

Please have a look on the following:

$(\'#myRadio\').change(function() {           

    if($(this).is(\':checked\'))  {
        $(this).parent().addClass(\'         


        
7条回答
  •  迷失自我
    2021-01-11 19:38

    my proposal is :

    $('#myRadio').change(function() {           
        _parent = $(this).parent();
        if($(this).is(':checked'))  {
           _parent.addClass('green');
        } else {                              
           _parent.removeClass('green');
        }
    });
    

提交回复
热议问题