我正在尝试了解XMLHttpRequest()
对象的工作方式。
如果删除xhr.send()
,将显示"hi"
。但是当它存在时什么也不会显示。我确实想将xhr.status
写入屏幕,但是首先我需要知道为什么脚本无法完成执行,即使其余部分不取决于xhr.send()
之后的响应。
<html>
<head>
<title>Playground</title>
</head>
<body>
<div>
<script>
var xhr = new XMLHttpRequest();
xhr.open("GET","http://www.google.com",false);
xhr.send();
document.write("hi");
</script>
</div>
</body>
</html>
最佳答案
XMLHttpRequest
可用作同步和异步,传递给函数的第三个参数设置此模式。传递false
表示已设置为同步,例如,等到通话结束
更改为:
var xhr = new XMLHttpRequest();
xhr.open("GET","http://www.google.com",true);
xhr.send();
document.write("hi");
它应该写出
"hi"
或您可以完全删除第三个参数,默认为异步 var xhr = new XMLHttpRequest();
xhr.open("GET","http://www.google.com");
xhr.send();
document.write("hi");
关于javascript - 为什么在调用XMLHttpRequest.send()之后我的脚本停止运行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24937733/