在开发人员工具中,看起来像是单选按钮列表中的2个按钮中的第一个单选按钮
<input name="rbnl" id="rbnl_0" type="radio" value="1">
我尝试使用$("input:radio").attr("checked", false);
,但我无法取消选中。你们需要帮助..谢谢。
更新
我检查了快速行动...... $("input:radio")[0].checked
是false
。但在网页中,它是已检查。
答案 0 :(得分:0)
您可以使用id直接访问元素或使用相同的选择器:
$("#rbnl_0").prop("checked",true);//to check it
$("input:radio").prop("checked",true);//to check it
$("#rbnl_0").prop("checked",false);//to unchecked it
$("input:radio").prop("checked",true);//to unchecked it