Ajax技术
2021-05-28 06:01
标签:intro 接收 请求方式 var 发送请求 style 新网 cal span AJAX 是开发者的梦想,因为您能够: Ajax请求的基本步骤: Ajax技术 标签:intro 接收 请求方式 var 发送请求 style 新网 cal span 原文地址:https://www.cnblogs.com/bxzen/p/14784369.html
//1.创建Ajax对象
var xhr =new XMLHttpRequest();
//2.甘肃Ajax对象要向哪里发送请求,以什么方式发送请求
1)请求方式2)请求地址
xhr.open(‘get‘,‘http://localhost:3000/first‘);
//3.发送请求
xhr.send();
//4.获取服务器端响应到客户端的数据
xhr.onload =function(){
console.log(xhr.responseText)
var responseText =JSON.parse(xhr.responseText)
//将JSON字符串转化为JSON对象
}
上一篇:js常用属性混剪