所以我有以下代码:
jQuery('#id').live('keyup.autocomplete', function () {
jQuery(this).autocomplete({
source: function (request, response) {
jQuery.getJSON("link?callback=?", {
format: 'jsonp',
...
}, response);
},
minLength: 2,
selectFirst: true,
select: function (event, ui) {
...
}
})
});
在 Firefox 中,当我尝试使用它给我的输入时:
TypeError: jQuery(this).autocomplete is not a function
[Break On This Error]
select: function( event, ui ) {
此错误仅在 Firefox 中,在所有其他浏览器上都可以正常工作。有任何想法吗?