gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 11:11:57 26 4
gpt4 key购买 nike

我尝试使用 jQuery 检查单选按钮。这是我的代码:

<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>

还有 JavaScript:

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

不起作用:

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

不起作用:

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

不起作用:

你还有别的想法吗?我错过了什么?

最佳答案

对于等于或高于 (>=) 1.6 的 jQuery 版本,请使用:

$("#radio_1").prop("checked", true);

对于 (<) 1.6 之前的版本,请使用:

$("#radio_1").attr('checked', 'checked');

提示:之后您可能还想在单选按钮上调用 click()change()查看评论了解更多信息。

关于javascript - 如何使用 jQuery 检查单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5665915/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com