博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ajax
阅读量:5269 次
发布时间:2019-06-14

本文共 1345 字,大约阅读时间需要 4 分钟。

原生js的ajax

var btn=document.getElementById('btn');btn.onclick =function(){var xhr;        if(window.XMLHttpRequest){            xhr=new XMLHttpRequest();        }else{            xhr= new ActiveXObject('microsoft.XMLHTTP');        }    console.log(xhr);    //第二步发送请求   //xhr.open('get','ajaxRode.html',true);//get方式    xhr.open('post','ajaxRode.html',true);//post方式    xhr.setRequestHeader ('Content-type','application/x-www-form-urlencoded');    //第三步告诉要什么    xhr.send();    //第四步得到返回结果    xhr.onreadystatechange=function(){        if(arr.readyState==4){            if(arr.status==200){               console.log(arr.responseText);            }        }    }}

  jquery的ajax方法

$.ajax({    url:'/comm/test1.php',    type:'POST', //GET    async:true,    //或false,是否异步    data:{        name:'yang',age:25    },    timeout:5000,    //超时时间    dataType:'json',    //返回的数据格式:json/xml/html/script/jsonp/text    beforeSend:function(xhr){        console.log(xhr)        console.log('发送前')    },    success:function(data,textStatus,jqXHR){        console.log(data)        console.log(textStatus)        console.log(jqXHR)    },    error:function(xhr,textStatus){        console.log('错误')        console.log(xhr)        console.log(textStatus)    },    complete:function(){        console.log('结束')    }})

  

转载于:https://www.cnblogs.com/zsn123/p/6604752.html

你可能感兴趣的文章
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Entityframework:“System.Data.Entity.Internal.AppConfig”的类型初始值设定项引发异常。...
查看>>
Linux中防火墙centos
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
283. Move Zeroes把零放在最后面
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
多线程《三》进程与线程的区别
查看>>
linux sed命令
查看>>
html标签的嵌套规则
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>
tju 1782. The jackpot
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>