js 设置radio默认选中

启用 停用

$(".font").find("input[name='status']").removeAttr("checked"); if ('1' == result.status){   $("#open").attr("checked","checked"); } else if ('0' == result.status){   $("#close").attr("checked","checked"); }
 中职
 高职
input type="radio" name="optionsRadiosinline" value="REGULAR_COLLEGE"  > 本科


   
  
if(level=='MIDDLE_VOCATIONAL'){
   $("input[name='optionsRadiosinline']").eq(0).attr("checked","checked");
}else if(level=='HIGH_VOCATIONAL'){
   $("input[name='optionsRadiosinline']").eq(1).attr("checked","checked");
}else if(level=='REGULAR_COLLEGE'){
   $("input[name='optionsRadiosinline']").eq(2).attr("checked","checked");
}

 
  





你可能感兴趣的:(前端)