js原生ajax写法
分享知识http://www.fedrobots.com/?search=302642我来纠错var xhr = new XMLHttpRequest(); // XMLHttpRequest对象用于在后台与服务器交换数据
xhr.open('GET', 'http://www.fuzhangkeji.com/api/weixin/wxsdk.php?url='+encodeURIComponent(location.href), true);
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200 || xhr.status == 304) { // readyState == 4说明请求已完成
var data = JSON.parse(xhr.responseText);
}
}
//POST方式
xhr.open('POST', '/someurl/somepage', true);
//设置请求头
xhr.setRequestHeader("Content-Type", "application/json");
//传递参数
xhr.send('param1=value1¶m2=value2');