0

我将 ajax 请求发送到 tomcat 服务器并获得响应,

function getAgentName(){
    $.ajax({  
        type: "POST",  
        url: "agentName.html",

        success: function(response){
            // we have the response 

            if(response != null && response !="" && response !="null"){
                alert( "response  :"+$.trim(response)); // line 10
            }

        },  
        error: function(e){  
            alert('Error: ' + e);  
        }, 
        complete:function(){
            getAgentName();
        }
    }); 
}

alertline 10as 中得到响应成功的错误'$' is null or not an object

编辑:我已经添加了Jquery 1.9.1.js.

不知道如何解决这个问题。希望我们的堆栈用户能帮助我。

4

2 回答 2

0

我猜你的 JQuery 库的链接可能是错误的。检查您是否包含正确的内容。

这是由 jQuery 托管的最新版本:http: //code.jquery.com/jquery-latest.min.js

于 2013-10-24T10:03:34.680 回答
0

响应错误的可能性很大。但只是为了给它一个适当的镜头,而不是使用

$.trim(response)

利用

response.trim()

如果您仍然遇到问题,那么这是与响应相关的问题,否则您已经解决了您的问题。

于 2013-10-24T10:14:10.597 回答