easyui-combobox 下拉框及下拉框支持模糊搜索

 

<input id="id" class="easyui-combobox ctritem" name="表单绑定后台字段"
data-options="editable:false,valueField:'key',textField:'value'" />



$(“#id").combobox({
width: 200,
valueField: 'id',
textField: 'name',
data: datas,
filter: function(q, row){
var opts = $(this).combobox('options');
return row[opts.textField].indexOf(q) >= 1;
}
});

  

posted @ 2021-05-12 15:13  Mark's.T  阅读(716)  评论(0)    收藏  举报