$("input[name=' '][value=' ']").prop("checked", true);//使用prop才会正常使用
$("input[name=''][value='']").attr("checked", true);//attr多次操作会失效
文章来源: radio选中赋值 多次操作
$("input[name=' '][value=' ']").prop("checked", true);//使用prop才会正常使用
$("input[name=''][value='']").attr("checked", true);//attr多次操作会失效