码迷,mamicode.com
首页 > 其他好文 > 详细

Ajax发送post请求

时间:2014-07-15 23:49:57      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:blog   http   java   os   数据   for   

 

//创建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);
}

  

Ajax发送post请求,布布扣,bubuko.com

Ajax发送post请求

标签:blog   http   java   os   数据   for   

原文地址:http://www.cnblogs.com/zixueit/p/3844653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!