Ajax技术

2021-05-28 06:01

阅读:493

标签:intro   接收   请求方式   var   发送请求   style   新网   cal   span   

AJAX 是开发者的梦想,因为您能够:

  • 不刷新页面更新网页
  • 在页面加载后从服务器请求数据
  • 在页面加载后从服务器接收数据
  • 在后台向服务器发送数据

Ajax请求的基本步骤:

//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对象 }

 

Ajax技术

标签:intro   接收   请求方式   var   发送请求   style   新网   cal   span   

原文地址:https://www.cnblogs.com/bxzen/p/14784369.html


评论


亲,登录后才可以留言!