如何使用jQuery检查单选按钮?

做~自己de王妃 提交于 2021-02-02 04:41:12

问题:

I try to check a radio button with jQuery. 我尝试用jQuery检查一个单选按钮。 Here's my code: 这是我的代码:

<form>
    <div id='type'>
        <input type='radio' id='radio_1' name='type' value='1' />
        <input type='radio' id='radio_2' name='type' value='2' />
        <input type='radio' id='radio_3' name='type' value='3' /> 
    </div>
</form>

And the JavaScript: 和JavaScript:

jQuery("#radio_1").attr('checked', true);

Doesn't work: 不起作用:

jQuery("input[value='1']").attr('checked', true);

Doesn't work: 不起作用:

jQuery('input:radio[name="type"]').filter('[value="1"]').attr('checked', true);

Doesn't work: 不起作用:

Do you have another idea? 你有其他想法吗? What am I missing? 我错过了什么?


解决方案:

参考一: https://stackoom.com/question/Nlxj/如何使用jQuery检查单选按钮
参考二: https://oldbug.net/q/Nlxj/How-to-check-a-radio-button-with-jQuery
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!