select获取当前选中的value
$(‘#DDLDEP‘).change(function () { var depId = $(this).children(‘option:selected‘).val(); });
select根据当前的text设置选中项
$("#DDLDEP option[text=‘当前文本‘]").attr("selected", true);
Jquery中select使用
原文:http://www.cnblogs.com/gonghui2016/p/6168520.html