我尝试向“ 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
想法?