首页 > 代码库 > Ajax发送post请求
Ajax发送post请求
//创建Ajax对象(兼容处理)function createXHR() { var xhr = null; if(window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else if(window.ActiveXObject) { xhr = new ActiveXObject(‘Microsoft.XMLHTTP‘); } return xhr;}//发送post请求function request(){ xhr.open(‘POST‘,‘checkRequire.php‘,true); xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");//post请求必须加上这行,get请求不需要 xhr.onreadystatechange = function() { if(this.readyState == 4 && this.status==200) { alert(this.responseTex);//返回的数据,并处理 } } xhr.send(‘name=tom&age=20‘); //发送请求数据,get请求xhr.send(null);}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。