1. 程式人生 > >EASYUI combobox firefox 下不支持中文檢索

EASYUI combobox firefox 下不支持中文檢索

輸入法 doc 輸入 模擬 eve input ref class color

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 下不支持中文檢索