码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-06-24 20:49:20      阅读:722      评论:0      收藏:0      [点我收藏+]

标签:span   func   ice   后台   select   ted   sel   单选框   input   

$(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怎么根据后台传过来的值动态设置下拉框、单选框选中

标签:span   func   ice   后台   select   ted   sel   单选框   input   

原文地址:http://www.cnblogs.com/qianzf/p/7074211.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!