美文网首页
js原生的ajax

js原生的ajax

作者: 温室寻荒凉 | 来源:发表于2017-06-01 00:29 被阅读0次

//下面是原生的js实现的ajax

function myajax(){

var xmlhttp;

if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari

xmlhttp = new XMLHttpRequest();

}

else {// code for IE6, IE5

xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

}

xmlhttp.onreadystatechange = function () {

if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {

var result = JSON.parse(xmlhttp.responseText);

console.log(result);

}

}

xmlhttp.open("POST", "/--------", true);//如果不跨域的话填个相对路径的接口地址就好,省略了域名

xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

xmlhttp.send();//send()里面可以加ajax提交的数据

}

相关文章

网友评论

      本文标题:js原生的ajax

      本文链接:https://www.haomeiwen.com/subject/wolsfxtx.html