EASYUI combobox firefox 下不支持中文检索

Posted 欣欣点灯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EASYUI combobox firefox 下不支持中文检索相关的知识,希望对你有一定的参考价值。

firefox 中文录入因为输入法的问题,无法出发检索的事件。网上的方法试过还是没有解决。

于是使用录入时新增一个模拟键shift,触发keydown事件,最终实现需要的效果。

$("input[id^=‘_easyui_textbox‘]").bind(input, function(){
    if($("input[id^=‘_easyui_textbox‘]").val().length>1)
    {
        var evtObj = document.createEvent(KeyEvents);
        evtObj.initKeyEvent(keydown, true, true, window, true, false, false, false, 16, 0);
        this.dispatchEvent(evtObj);
    }
}); 

 

以上是关于EASYUI combobox firefox 下不支持中文检索的主要内容,如果未能解决你的问题,请参考以下文章

easyui表单提交,后台获取不到值

easyui-combobox绑定回车事件相关

jQuery easyui 中 combobox的事件处理吗

EasyUI中combobox的使用方法和一个代码实例

jquery easyui combobox 添加添加选择项

easyui combobox onchange 自动过滤没有了