<!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>Document</title>
</head>
<body>
<button id="get">GET</button>
<br>
<button id="post">POST</button>
<br>
<div id="div"></div>
</body>
</html>
<script>
window.onload = function(){
const get = document.querySelector('#get')
const post = document.querySelector('#post')
const div = document.querySelector('#div')
get.onclick = function(){
console.log('点击了get按钮') //当点击按钮之后这里执行了
let xhr = new XMLHttpRequest()
xhr.onreadystatechange = function(){
console.log('asd') //当点击按钮之后这里没有执行
if(this.readyState == 4 && this.status ==200){
div.innerHTML = this.responseText
}
xhr.open('GET','http://127.0.0.1/api/get?a=1',true) //跨域了,应该会有一个报错吧,但是没反应
xhr.send()
}
}
}
</script>
ajax请求没有反应
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
关注 这样试试看。
<!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>Document</title> </head> <body> <button id="get">GET</button> <br> <button id="post">POST</button> <br> <div id="div"></div> </body> </html> <script> window.onload = function () { const get = document.querySelector('#get') const post = document.querySelector('#post') const div = document.querySelector('#div') get.onclick = function () { console.log('点击了get按钮') //当点击按钮之后这里执行了 let xhr = new XMLHttpRequest() xhr.onreadystatechange = function () { console.log('asd') //当点击按钮之后这里没有执行 if (this.readyState == 4 && this.status == 200) { div.innerHTML = this.responseText } } xhr.open('GET', 'http://127.0.0.1/api/get?a=1', true) //跨域了,应该会有一个报错吧,但是没反应 xhr.send() } } </script>
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 系统 24h2 专业工作站版,浏览文件夹的图库,视频,图片之类的怎样删除?
- ¥15 怎么把512还原为520格式
- ¥15 MATLAB的动态模态分解出现错误,以CFX非定常模拟结果为快照
- ¥15 求高通平台Softsim调试经验
- ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
- ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
- ¥15 栅极驱动低侧烧毁MOSFET
- ¥30 写segy数据时出错3
- ¥100 linux下qt运行QCefView demo报错
- ¥50 F1C100S下的红外解码IR_RX驱动问题