ajax 中根据json数据不同 对页面中 选择框radio 进行动态选择

前端之家收集整理的这篇文章主要介绍了ajax 中根据json数据不同 对页面中 选择框radio 进行动态选择前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$(document).ready(function(){
$.ajax({
async:false,
cache:false,
type:"post",
url:"ClinicSet/getCardyao",
dataType:"JSON",
success:function(result){ resul是从控制器传过来的 (D S N)
alert(result.unrealCard);
alert(result.ifYaofang);
alert(result.ifDuanxin);
$("input[name=unrealCard][value="+result.unrealCard+"").attr("checked",true);
}
});

})






根据json数据不同 来对单选框进行选择 是D动态选择D 是 S 动态选择S

<input type="radio" id="unrealCard" name="unrealCard" value="D" />电子卡 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="radio" id="unrealCard" name="unrealCard" value="S" />实体卡 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="radio" id="unrealCard" name="unrealCard" value="N" />没卡;

猜你在找的Ajax相关文章