これが私のjQueryajaxコードです
$.ajax({
type: "GET",
url: "http://example.com/request=r",
dataType: "json",
processData: true,
data: {},
success: function (responseString) {
alert(responseString);
},
error: function (xhr, errorType, exception) {
var errorMessage = exception || xhr.statusText;
alert("Excep:: "+exception +"Status:: "+xhr.statusText);
}
});
例外は発生しませんが、xhr.statusTextは次のように取得されます。Error