jquer回显选中select下拉框

  公司使用的框架比较旧,没有使用el等表达式。

  

<%
String context = request.getContextPath();
String index = (String)request.getAttribute("index"); //获取后台传来下拉框的值
%>

jquery

$('select').children('option').each(function(){
if($(this).val()=='<%=index%>'){
$(this).prop('selected',true);
}
});

html

<div align="center">
<select>
<option value="">请选择</option>
<option value="1">北京</option>
<option value="2">上海</option>
<option value="3">深圳</option>
<option value="4">广州</option>
</select>
</div>
上一篇:jquery Combo Select 下拉框可选可输入插件


下一篇:JQuery 插件之Ajax Autocomplete(ajax自动完成)搜索引擎自动显示下拉框