标签:new 取数 status request pen size XML font post请求
xhr=new XMLHttpRequest();
var url="要获取数据的地方";
xhr.open(‘post‘,url,true);
POST请求头(get就不用写这个):xhr.setRequestHeader(‘Content-type‘,‘application/x-www-form-urlencoded‘);
字符 var str="fromname"+
xhr.send(str);
xhr.onreadystatechange=function(){
if(xhr.readyState==4){
if(xhr.status==200){
}
}
}
标签:new 取数 status request pen size XML font post请求
原文地址:http://www.cnblogs.com/ikongXY/p/6018223.html