jQuery radio onchange toggle class of parent element?

前端 未结 7 966
无人及你
无人及你 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:37

    Try this:

    if($(this).is(':checked')) {
        $(this).parent().siblings('td.green').removeClass('green');
        $(this).parent().addClass('green');
    }
    

提交回复
热议问题