jquery给下拉框设置默认值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery给下拉框设置默认值相关的知识,希望对你有一定的参考价值。

参考技术A jquery设置下拉框的默认值可以直接使用val方法进行设置。
val方法可以设置表单元素的值,不管是输入框还是下拉菜单,都是用一样的设置方法。

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

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给下拉框设置默认值的主要内容,如果未能解决你的问题,请参考以下文章

js配置下拉框默认值无效

angular 下拉框null默认值

JAVAFX中 如何设置下拉框的默认值

jsp刷新页面 下拉框设置默认值

html下拉框怎么设置默认值

下拉菜单select,怎么设置默认值