选中radio:
$("input[name='radioName']").prop("checked", true);
取消选中radio:
$("input[name='radioName']").prop("checked", false);
选中radio:
$("input[name='radioName']").attr("checked", true);
取消选中radio:
$("input[name='radioName']").attr("checked", false);
$("input[name='radioName']").removeAttr("checked");
注意事项:
上述方法中的"name=‘radioName’"需要替换为实际radio的name属性值;
使用prop()方法和attr()方法设置radio为选中状态时,需要将第二个参数设置为true;
使用removeAttr()方法取消radio的选中状态时,不需要传递参数。