//创建-第一步
var xhr;
//非IE6
if(window.XMLHttpRequest){
xhr=new XMLHttpRequest();
}else{
//ie6及其以下版本浏览器
xhr=ActiveXObject('Microsoft.XMLHTTP');
}
//连接和发送-第二步
xhr.open('POST','/sawp/xxtq?type=ajbh&ajbh='+ajbh,true);
//设置表单提交时的内容类型
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(null);
//接收-第三步
xhr.onreadystatechange=function(){
if (xhr.readyState ==4 && xhr.status ==200){
alert(xhr.responseText);
// alert(typeof xhr.responseText) //这个是服务端返回的数据类型,比如这里就是string
}else{
alert("错误!")
}
}
js发送ajax请求
最新推荐文章于 2024-08-15 14:48:45 发布