1 Star 0 Fork 1

PO.X.C/http请求

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1-get.html 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
PO.X.C 提交于 2022-09-29 19:26 . 上传
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ajax-Get-请求</title>
<style>
#result {
width: 200px;
height: 100px;
border: solid 1px #90b;
}
</style>
</head>
<body>
<button>点击发送请求</button>
<div id="result"></div>
<script>
//获取button元素
const btn = document.getElementsByTagName('button')[0];
const result = document.getElementById("result");
btn.onclick = function() {
//创建对象
const xhr = new XMLHttpRequest();
//初始对象 设置请求方式
xhr.open('GET', 'http://127.0.0.1:1000/server?a=100&b=200&c=300');
//发送
xhr.send();
//事件绑定 处理服务端返回的结果
//on when当…………的时候
//readystate 是xhr对象的属性,表示状态0 1 2 3 4
//change 改变
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
if (xhr.status >= 200 && xhr.status < 300) {
//处理行 头 空行 体
//响应行
// console.log(xhr.status); //状态码
// console.log(xhr.statusText); //状态字符串
// console.log(xhr.getAllResponseHeaders()); //所有响应的时间
// console.log(xhr.response) //响应体
//设置result文本
result.innerHTML = xhr.response;
} else {
}
}
}
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/poxc/http-request.git
[email protected]:poxc/http-request.git
poxc
http-request
http请求
master

搜索帮助