jquery怎么根据后台传过来的值动态设置下拉框单选框选中

Posted 锋齐叶落

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery怎么根据后台传过来的值动态设置下拉框单选框选中相关的知识,希望对你有一定的参考价值。

$(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);
}
});
<input type="hidden" id="sex" value="${serviceInfo.sex}"/>
<input type="radio" name="sex" value="0" checked="checked"/>男
<input type="radio" name="sex" value="1"/>女
<input type="hidden" id="marriageStatus" value="${serviceInfo.marriageStatus}"/>
<input type="radio" name="marriageStatus" value="0" checked="checked"/>是
<input type="radio" name="marriageStatus" value="1"/>否
<input type="hidden" id="education" value="${serviceInfo.education}"/>
<select name="education" id="education1">
<option value="硕士">硕士</option>
<option value="本科">本科</option>
<option value="大专">大专</option>
<option value="其它">其它</option>
</select>

以上是关于jquery怎么根据后台传过来的值动态设置下拉框单选框选中的主要内容,如果未能解决你的问题,请参考以下文章

JQuery MiNiUI 多选多列下拉列表如何动态赋值。

用JS怎么给select标签设置动态的默认值

jquery 根据后台返回值来选中下拉框 option 值

wpf下拉框 绑定怎么让他默认有选中项

jquery动态添加下拉框选项设置下拉框样式怎么做啊

jquery通过AJAX接受PHP传过来的值。怎么接收?