How can I toggle radiobutton

后端 未结 7 1089
一向
一向 2020-12-31 03:57

Say this is my HTML:



         


        
相关标签:
7条回答
  • 2020-12-31 04:53

    I use an onClick() like the following for my custom radios:

    $(function(){
      // if selected already, deselect
      if ($(this).hasClass('selected') {
        $(this).prop('checked', false);
        $(this).removeClass('selected');
      }
      // else select
      else {
        $(this).prop('checked', true);
        $(this).addClass('selected');
      }
      // deselect sibling inputs
      $(this).siblings('input').prop('checked', false);
      $(this).siblings('input').removeClass('selected');
    }
    
    0 讨论(0)
提交回复
热议问题