码迷,mamicode.com
首页 > Web开发 > 详细

原生js实现ajax的方法

时间:2017-06-15 10:17:24      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:for   pen   从服务器   request对象   orm   get   http   his   amp   

var Ajax={
get: function (url,fn){
var obj=new XMLHttpRequest(); // XMLHttpRequest对象用于在后台与服务器交换数据 obj.open(‘GET‘,url,true); obj.onreadystatechange=function(){ if (obj.readyState == 4 && obj.status == 200) { // readyState==4说明请求已完成 fn.call(this, obj.responseText); //从服务器获得数据 } }; obj.send(); //将请求发往服务器 }, post: function (url, data, fn) { var obj = new XMLHttpRequest(); obj.open("POST", url, true); obj.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); // 设置请求头 obj.onreadystatechange = function () { if (obj.readyState == 4 && (obj.status == 200 || obj.status == 304)) { // 304未修改 fn.call(this, obj.responseText); } }; obj.send(data); } }

原生js实现ajax的方法

标签:for   pen   从服务器   request对象   orm   get   http   his   amp   

原文地址:http://www.cnblogs.com/w-xiaojia/p/7015665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!