Ajax发送请求的四个步骤
程序员文章站
2022-06-04 10:31:59
1.创建XMLHttpRequest let xhr=new XMLHttpRequest; 2.连接服务器 xhr.open("get","goods.json",true) true代表异步,false代表同步。goods.json代表请求的路径 3.向服务器发送请求 xhr.send() 4. ......
1.创建xmlhttprequest
let xhr=new xmlhttprequest;
2.连接服务器
xhr.open("get","goods.json",true)
true代表异步,false代表同步。goods.json代表请求的路径
3.向服务器发送请求
xhr.send()
4.接受服务器响应的数据
ajax的作用:向http服务器发送请求,并可以接收到http服务器响应的数据
上一篇: 图解冒泡排序算法
下一篇: itchat 运行记录