1.获取呗选中的下拉列表的val
var status = $("#form option:selected").val();
#form是form表单的ID
2.让指定的下拉列表的值选中
field_type是select的ID
$('#field_type').val("{$vo.type}");
3.根据后台value设置让哪个下拉选中
$("#select的ID option").each(function(){
var debit_id = $(this).val();
console.log(debit_id);
if(get_debit_esign_id == debit_id){
$(this).attr('selected','selected');
}
});