jquery 获取easyui combobox选中的值、赋值

jquery easyui combobox 控件支持单选和多选

1、获取选中的值

$('#comboboxlist').combobox('getValue');  //单选时

$('#comboboxlist').combobox('getValues'); //多选时

2、赋值

$('#comboboxlist').combobox('setValue', ‘北京’); 

原文地址:https://www.cnblogs.com/xbblogs/p/6076371.html