标签:func html 异步 oct 服务 code tle alt cti
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
// 1.创建ajax对象
var xhr = new XMLHttpRequest();
// 2.告诉Ajax对象要向哪发送请求,以什么方式发送请求
// 1)请求方式 2)请求地址
xhr.open('get', 'http://localhost:3000/first', false);
// 3.发送请求
xhr.send();
console.log(111); // 没有上面的false。则一次输出 111 222 333
// 4.获取服务器端响应到客户端的数据
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
console.log(222)
console.log(xhr.responseText)
}
}
console.log(333);
</script>
</body>
</html>
标签:func html 异步 oct 服务 code tle alt cti
原文地址:https://www.cnblogs.com/jianjie/p/12344194.html