0

在 Firefox Web 控制台中访问 jQuery 变量我看到(形成自动完成)第二个 jQuery 变量;该变量看起来像jQuery85448957324..('jQuery' 后跟一个随机数)。

最初访问这个变量给出了一个toJSON: .noop()引用......的结果,但现在它返回了 ReferenceError:

jQueryxxxxxxxxxxxxxxx is not defined 

这个变量指的是什么?

在此处输入图像描述

4

1 回答 1

0

You are doing something wrong that breaks jQuery and maby jQuery UI too.

  1. Are you using AJAX? Try to check if your response is a valid JSON...
  2. Are you using JSONP? Maby the callback throws that error...
  3. Are you using a custom itemRender? Make sure to have a valid ui.item...

Debug your items using a UI Autocomplete callback like:

selected: function(event, ui) {
    console.log(ui.item);
}

API: http://api.jqueryui.com/autocomplete/#event-select

于 2014-10-08T10:04:53.527 回答