以下代码不起作用,并且没有返回正确的结果。
function test(file) {
var uri = "http://localhost/test.php";
var xhr = new XMLHttpRequest();
var result="done";
xhr.open("POST", uri, true);
xhr.send();
xhr.onloadend=function()
{
result=xhr.responseText;
return result;
}
}
从事件处理程序返回是错误的还是只是将结果返回给测试函数?