let xhr=new XMLHttpRequest()//初始化
console.log(xhr.readyState)//ajax对象的状态
//基础配置
xhr.open("get","https://www.baidu.com")
//发送请求
xhr.send(null)
//ajax 对象准备状态变化的时候会执行函数
xhr.onreadystatechange=function(){
if(xhr,readyState===4){
if(xhr.status>=200 && xhr.status<300 ||xhr.status===304){
console.log(xhr.responseText)//ajax 返回的字段xhr.responseText
}
}
}
相关文章
- 11-12创建flask
- 11-12python 3 创建虚拟环境(Win10)
- 11-12操作SharedPreferences的注意点
- 11-12使用Typora编写后的md文件优雅的上传到博客
- 11-12django全文检索模块的使用
- 11-12如何远程控制我的Android?
- 11-12【主机渗透】获取远程主机保存的RDP凭据密码
- 11-12博客园的一种美化方案
- 11-12跟着医生学kivy:kivy的基础工作,配置稳定正确的编译环境
- 11-12app自动化的执行