.autocomplete()无法在第二个ajax响应中工作

时间:2014-04-29 12:48:56

标签: javascript php jquery ajax autocomplete

我已经创建了在我的网站上使用自动完成功能,我的代码是自动完成功能,它在第一次运行Ajax响应时工作正常但是第二次没有工作。

请帮忙

自动完成代码:

$(document).ready(function(){
 $("#txtarriving").autocomplete("autocomplete.php", {
    selectFirst: true
  });
});

Ajax请求

$.ajax({
    type: "GET",
    url: "flight_module.php?btntype=flight", 
    dataType: "html",
    success: function(html) {
       $(".Mydiv").hide();
        $('#outputdiv').html(html).fadeIn('slow');
    });
});

0 个答案:

没有答案