首页 > 代码库 > jQuery easyui combobox获取值(多个)
jQuery easyui combobox获取值(多个)
Combobox组件官方文档: http://www.jeasyui.com/documentation/index.php#
配置示例
<input class="easyui-combobox" id="themes" name="themes" data-options="url:'<%=basePath %>resources/json/KeyType.json', method:'get', valueField:'value', textField:'text', multiple:true, panelHeight:'auto' ">
JSON数据
[{ "value":"sidaluanjian", "text":"私搭乱建" },{ "value":"cnuisance", "text":"施工扰民" },{ "value":"roaddamage", "text":"道路破损" },{ "value":"sdtrash", "text":"暴漏垃圾" }]
调用方式
combobox获取单个值
$(‘#mycomBox‘).combobox(‘getValue‘);
combobox获取多个值
$(‘#mycomBox‘).combobox(‘getValues‘);
如果是获得文本内容,将getValue改为getText即可
jQuery easyui combobox获取值(多个)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。