判断radio的值是否与某个值相等,相等就选中该radio项
$("input[name=test]").each(function(){
if($(this).val()==wancheng){
$(this).attr('checked',true);
}
})
取消radio的选中状态
$("input[name=test]:checked").attr('checked',false);