I have radio buttons in HTML like this:
| 1 
              相关标签:
        
        
        
                         				            
            
           
            
                              
                  
                2020-11-29 17:42
               
                                                                       
$('#radio1').removeAttr('checked');
$('#radio2').removeAttr('checked');
$('#radio3').removeAttr('checked');
$('#radio4').removeAttr('checked');
Or
$('input[name="correctAnswer"]').removeAttr('checked');
 
                                                         |