Jquery AutoComplete在FireFox中不起作用

时间:2013-11-01 05:23:19

标签: javascript jquery-ui jquery jquery-plugins

我正在使用带有ajax的jquery自动完成功能,它在IE 8和Chrome中运行良好。但对于Firefox(版本21),结果不会显示在自动完成中。但我能找到 ajax成功并导致firebug控制台。  我无法在Firebug中找到任何其他错误或警告。以下是我使用的示例代码。我刚刚添加了一些用于理解目的的警报,所有警报都很好用Chrome和IE。但我只能找到警报位置 - 1'在FireFox工作。请帮忙

$ ( "#sample" ).autocomplete ( 
{
    minLength: 1,
 source: function(request, response) 
 {
  var qurl="sample URL";
  alert('Alert  Postion - 1');  
        $.ajax({
            url: qurl,
            data: { },
            dataType: "json",
            type: "POST",
            success: function(data) 
            {  
                     alert('Alert  Postion - 2');  
                    if(data.status==true)
                    {
                        alert('Alert  Postion - 3');  

                        response($.map(data.result, function(obj) { 
                        alert('Alert  Postion - 4');  
                                   return {      
                                        label: obj.value,
                                        value: obj.key                        
                                    };
                                }));
                    }
                    else
                    {
                     alert('Alert  Postion - 5');  
                    }
            alert('Alert  Postion - 6');  
            },
           error:function()
           {
                alert(' Error');
           } 
        });
    }
});

0 个答案:

没有答案