我尝试使用以下代码发出 HTTP GET 请求以从服务器获取一些数据。看起来,HTTP 请求根本没有到达服务器。我在这里错过了什么吗?
我也试过$.get(url, function(data){alert(data);}, "json").error(onHttpError)
了。但没有运气。
$(document).ready(function()
{
$.getJSON(url, onHttpSuccess).error(onHttpError);
/**
*onHttpSuccess
*/
function onHttpSuccess( response )
{
alert("ASG Data Received:" + response);
}
/**
*onHttpError
*/
function onHttpError()
{
var errorMsg = "HTTP Error!!!";
$('#message').html(errorMsg);
alert(errorMsg);
}
});
请高手帮忙。谢谢!
丹麦