How to check radio button is checked using JQuery?

后端 未结 8 841
猫巷女王i
猫巷女王i 2020-12-24 07:20

I have two radio buttons in one group, I want to check the radio button is checked or not using JQuery, How ?

8条回答
  •  渐次进展
    2020-12-24 07:41

    jQuery 3.3.1

    if (typeof $("input[name='yourRadioName']:checked").val() === "undefined") {
        alert('is not selected');
    }else{
        alert('is selected');
    }
    

提交回复
热议问题