我正在尝试创建一个生成 AJAX 调用并返回响应的函数。
function msg(message)
{
send = new XMLHttpRequest();
send.open("POST", "msghandler.php", false);
send.setRequestHeader("Content-type","application/x-www-form-urlencoded");
send.send("msg="+encodeURI(message));
return send.responseText;
}
正如您所看到的,现在我正在使用同步调用,但这不是最佳解决方案,因为在我的调试中很常见服务器端出现问题并最终冻结我的浏览器。有没有办法使调用异步并让函数返回响应?