jquery怎么根据后台传过来的值动态设置下拉框、单选框选中
2021-07-15 02:05
标签:span func ice 后台 select ted sel 单选框 input jquery怎么根据后台传过来的值动态设置下拉框、单选框选中 标签:span func ice 后台 select ted sel 单选框 input 原文地址:http://www.cnblogs.com/qianzf/p/7074211.html$(function(){
var sex=$("#sex").val();
var marriageStatus=$("#marriageStatus").val();
var education=$("#education").val();
if(!isnull(sex)){
$("input:radio[name=‘sex‘][value="+sex+"]").attr(‘checked‘,‘true‘);
}
if(!isnull(marriageStatus)){
$("input:radio[name=‘marriageStatus‘][value="+marriageStatus+"]").attr(‘checked‘,‘true‘);
}
if(!isnull(education)){
$("#education1 option[value=‘"+education+"‘]").attr("selected", true);
}
});
男
女
是
否
文章标题:jquery怎么根据后台传过来的值动态设置下拉框、单选框选中
文章链接:http://soscw.com/index.php/essay/105370.html