在某些浏览器(如火狐),在使用AutoComplete进行绑定的时候,无法出现与关键字相似的候选项。其原因这里有描述;

解决方法可以采用下面方式:

$('#bindInputId).bind("input.autocomplete", function () {
  $(this).trigger('keydown.autocomplete');
});

相关文章:

  • 2021-11-23
  • 2022-12-23
  • 2022-02-07
  • 2021-06-28
  • 2021-06-23
  • 2021-12-01
  • 2022-12-23
猜你喜欢
  • 2021-12-25
  • 2022-12-23
  • 2021-11-27
  • 2021-09-20
  • 2021-05-18
  • 2022-12-23
  • 2021-04-24
相关资源
相似解决方案