<pre name="code" class="html"><input class="easyui-combobox" name="language" data-options=" data: baseData.emp.ck, width: 105, height: 26, valueField: 'id', textField: 'text', inputCode: 'inputCode', //拼音码 panelHeight: 'auto', filter: function(q, row){ var opts = $(this).combobox('options'); return row[opts.inputCode].indexOf(q) == 0; } ">
最近做项目遇到easyui combobox 本地数据实现输入中文拼音简码过滤数据的问题,easyui combobox默认是没有支持中文拼音码本地检索的功能 (个人没找到相应的办法),在网上没有找到好的办法,最后只能猜了,不过至少实现想要的功能
时间: 2024-10-10 16:29:08