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

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

时间:2017-07-07 13:10:52      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:var   jquery   html   attr   ack   ted   ati   blog   color   

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

 1 $(function(){
 2     var sex=$("#sex").val();
 3     var marriageStatus=$("#marriageStatus").val();
 4     var education=$("#education").val();
 5     if(!isnull(sex)){
 6         //$("input:radio[name=‘sex‘][value="+sex+"]").attr(‘checked‘,‘true‘);
 7         $("input:radio[name=‘sex‘][value="+sex+"]").prop(‘checked‘,‘true‘);
 8     }
 9     if(!isnull(marriageStatus)){
10         //$("input:radio[name=‘marriageStatus‘][value="+marriageStatus+"]").attr(‘checked‘,‘true‘);
11         $("input:radio[name=‘marriageStatus‘][value="+marriageStatus+"]").prop(‘checked‘,‘true‘);
12     }
13     //if(!isnull(education)){
14     //    $("#education1 option[value=‘"+education+"‘]").attr("selected", true);
15     //}
16     $("#education1").val(education);
17     
18 });
19 <input type="hidden" id="sex" value="${serviceInfo.sex}"/>
20 <input type="radio" name="sex" value="0" checked="checked"/>21 <input type="radio" name="sex" value="1"/>22 <input type="hidden" id="marriageStatus" value="${serviceInfo.marriageStatus}"/>
23 <input type="radio" name="marriageStatus" value="0" checked="checked"/>24 <input type="radio" name="marriageStatus" value="1"/>25 <input type="hidden" id="education" value="${serviceInfo.education}"/>
26 <select name="education" id="education1">
27     <option value="硕士">硕士</option>
28     <option value="本科">本科</option>
29     <option value="大专">大专</option>
30     <option value="其它">其它</option>
31 </select>

 

 

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

标签:var   jquery   html   attr   ack   ted   ati   blog   color   

原文地址:http://www.cnblogs.com/manzb/p/7131300.html

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