To uncheck the radio button

Asked 2 years ago, Updated 2 years ago, 35 views

I'd like to uncheck the radio button I don't know what to do.

javascript jquery

2022-09-22 16:00

1 Answers

If you use JavaScript, this.checked=false;

If you write jQuery, $(this).You can say prop('checked', false);


2022-09-22 16:00

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.