我尝试使用prototype.js
发送给httpbin请求我的代码:
function loadTest()
{
new Ajax.Request('http://httpbin.org/get', { method:'get',
// success request
onSuccess:
function(transport) {
alert("Success! \n\n" + transport.status);
},
// fail request
onFailure:
function() {
alert('Something went wrong...');
}
});
}
执行后我得到:Success!
和transport.status = 0
为什么呢?我如何正确发送请求并获得prototype.js的响应?
谢谢。