可以将完整的 URL 路径放在 ajax 中吗?我在访问 url 时遇到问题,并且我的错误响应状态为 0。
$.ajax({
url: "http://fullurlpath.com/php/myphppagedata.php",
type: "GET",
data: "somedata="+somedata,
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.responseText);
}
}).error(function(xhr){
alert(xhr.responseText);
alert(xhr.status);
}).done(function(data){
alert(data);
});
另外,在我的http://fullurlpath.com/php/myphppagedata.php我有
header('Access-Control-Allow-Origin: *');