「 http://pastebin.com/raw.php 」への JQuery ajax リクエストを作成しようとし、次のコードを使用します。
$.ajax({
url: 'http://pastebin.com/raw.php',
data: "i=VJ29uFnk",
complete: function(jqXHR, textStatus) {
alert('complete');
},
success: function(data) {
alert(data);
},
error: function(xhr, status, error) {
alert('noh!')
}
});
これにより、xhr 内でステータス「404」が取得されますが、firebug で確認できる URL は正しいように見えます。
http://pastebin.com/raw.php?i=VJ29uFnk
アイデア?