我尝试用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);

不工作:

你还有别的主意吗?我错过了什么?


当前回答

试试这个。

在本例中,我以它的输入名称和值为目标

$("input[name=background][value='some value']").prop("checked",true);

很高兴知道:在多词值的情况下,它也会工作,因为撇号。

其他回答

我也遇到过类似的问题,一个简单的解决方法就是:

.click()

如果在调用函数后刷新radio,则任何其他解决方案都将工作。

短而易读的选项:

$("#radio_1").is(":checked")

它返回true或false,所以你可以在if语句中使用它。

试试这个

var isChecked = $("#radio_1")[0].checked;

最短的

radio_1.checked

checkBtn。Onclick = e=> { console.log (radio_1。检查); } 选择第一个单选并单击按钮 <!——问题html——> < >形式 < div id =“类型”> <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 > > < /形式 <!——测试html——> <按钮id = " checkBtn " >查看> < /按钮

这里是Jsfiddle代码片段

是的,这对我来说很管用:

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