1

如果问题标题不够清楚:

我正在使用 jQuery AutoComplete 插件(jQuery UI 1.8.5 的一部分)

我会认为提供的 CSS/图像会包含类似 ajax 的进度图像?

如果没有,创建一个最简单的方法是什么?

这是我的自动完成代码:

$('#query').autocomplete({
   source: function (request, response) {
      $.ajax({
         url: "/Search/FindLocations",
         type: "POST",
         dataType: "json",
         data:
         {
            searchText: request.term
         },
         success: function (data) {
            response($.map(data, function (item) {
               return { name: item.name, value: item.name }
            }))
         }),
   select: function (event, ui) {
      // snip... (this is where i display stuff about what they clicked).
   }});

在上面的代码中我应该在哪里隐藏/显示图像?

显然,在“选择”中的代码之后,我可以隐藏图像,但我可以在哪里“显示”图像?

4

1 回答 1

3
$('#query').autocomplete({
   source: function (request, response) {
      //i would show the image here, before starting your ajax request
      $("#theImage").show();
      $.ajax({
         url: "/Search/FindLocations",
         type: "POST",
         dataType: "json",
         data:
         {
            searchText: request.term
         },
         success: function (data) {
            response($.map(data, function (item) {
               return { name: item.name, value: item.name }
            }))
         }),
   select: function (event, ui) {
      // snip... (this is where i display stuff about what they clicked).
   }});
于 2010-10-20T06:40:36.813 回答