在某些浏览器(如火狐),在使用AutoComplete进行绑定的时候,无法出现与关键字相似的候选项。其原因这里有描述;
解决方法可以采用下面方式:
$('#bindInputId).bind("input.autocomplete", function () {
$(this).trigger('keydown.autocomplete');
});
在某些浏览器(如火狐),在使用AutoComplete进行绑定的时候,无法出现与关键字相似的候选项。其原因这里有描述;
解决方法可以采用下面方式:
$('#bindInputId).bind("input.autocomplete", function () {
$(this).trigger('keydown.autocomplete');
});