只要在jquery.autocomplete.js的196的分号后加上一下代码


解决火狐浏览器对自动补全功能的缺憾


    }).bind("setOptions", function() {
        $.extend(options, arguments[1]);
        // if we've updated the data, repopulate
        if ( "data" in arguments[1] )
            cache.populate();
    }).bind("input", function() {  
        onChange(0, true);  
    }).bind("unautocomplete", function() {
        select.unbind();
        $input.unbind();
        $(input.form).unbind(".autocomplete");
    });

相关文章:

  • 2022-12-23
  • 2021-12-28
  • 2021-09-19
  • 2021-12-17
  • 2022-01-04
  • 2021-11-03
  • 2021-12-05
  • 2021-06-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-02
  • 2022-12-23
  • 2021-12-23
  • 2021-12-21
相关资源
相似解决方案