Ajax与Layui

寵の児 提交于 2021-01-09 05:38:06

ajax:请求  响应

js
  //创建ajax对象
  var xhr=new XMLHttpRequest();
  //监听ajax状态
 xhr.onreadystatechange=function(){
  if(xhr.readyState == 4){
   console.log(xhr.responseText);
  }
 }
  //发起请求
  xhr.open('get','index.html?name=zhangsan&age=12');
//  xhr.open('post','index.html?name=zhangsan&age=12');
  //传数据
  xhr.send(null);

jQuery
   $.ajax({
    async:true, //同步和异步   默认是的同步    同一个时间点允许执行多个过程
    url:"fwq.php",//提交地址
    data:{name:"zhangsan",age:12},//提交数据
       type:'post',//默认get
    dataType:'text',//默认值text
    success:function(data){
           
       }
   });
 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!