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;
}
});

  

上一篇:看M代码系列(记录一些函数之类的)


下一篇:实验3:OpenFlow协议分析实践