js中的AJAX

js中ajax get请求的写法 
var
xhr=new XMLHttpRequest(); xhr.open('get','http://rap2api.taobao.org/app/mock/229494/news?content='+ inp.value) xhr.send(); xhr.onreadystatechange=function () { if (xhr.readyState==4) { // console.log(xhr.responeText } }
js中post请求的写法
var
xhr = new XMLHttpRequest(); xhr.open('post',"http://192.168.1.5/archives/register.php",true); // 如果是post请求 必须加上请求头 xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xhr.send("userName="+user.value+'&passWord='+pass.value); xhr.onreadystatechange =function(){ if (xhr.readyState==4) { var obj = JSON.parse(xhr.responseText); console.log(obj.responseCode); if (obj.responseCode=="0") { window.location.href = "denglu.html" } } }

 

 

posted @ 2019-11-12 09:43  white55k  阅读(212)  评论(0编辑  收藏  举报