jQuery UI 版本:1.8.9
主要原因是中文輸入時不會觸發原本在autocomplete 榜定的keydown事件。
try this one:
//fixed firefox and ie in IME bug
jQuery('#searchkey').bind( "input.autocomplete", function(){
$(this).trigger('keydown.autocomplete');
})

jQuery UI 版本:1.8.9
主要原因是中文輸入時不會觸發原本在autocomplete 榜定的keydown事件。
try this one:
//fixed firefox and ie in IME bug
jQuery('#searchkey').bind( "input.autocomplete", function(){
$(this).trigger('keydown.autocomplete');
转载于:https://www.cnblogs.com/joe-yang/archive/2011/02/18/1958186.html