Js部分:
<script type="text/javascript">
$(function(){
//回显 schoolCode 下拉框id ${schoolCode} 后台放作用域里的值
$("#schoolCode option").each(function(){
if($(this).val() == '${schoolCode}'){
$(this).attr("selected", true);
}
});
});
$('#testSelect option:selected') .val();//Jquery获取选中的值
</script>