How to clear radio button in Javascript?

后端 未结 10 593
予麋鹿
予麋鹿 2020-12-02 19:57

I have a radio button named \"Choose\" with the options yes and no. If I select any one of the options and click the button labeled \"clear\", I need to clear the selected o

10条回答
  •  悲哀的现实
    2020-12-02 20:36

    if the id of the radio buttons are 'male' and 'female', value reset can be done by using jquery

    $('input[id=male]').attr('checked',false);
    $('input[id=female]').attr('checked',false);
    

提交回复
热议问题