我将 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();
}
});
}
我alert
在line 10
as 中得到响应成功的错误'$' is null or not an object
。
编辑:我已经添加了Jquery 1.9.1.js
.
不知道如何解决这个问题。希望我们的堆栈用户能帮助我。