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: *');