时间:2021-07-01 10:21:17 帮助过:8人阅读
或者对单选框默认选定设置:
$("input[name='sex']").each(function(){
if($(this).val()==s){
$(this).attr("checked",true);
//this.checked=true;
}
});