//声明一个xmlhttp变量
var xmlhttp;
//创建ajax对象
if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}else{// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
//为ajax对象绑定事件处理
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
vstr = xmlhttp.responseText; //将ajax对象获取的text数据赋值
vxml = xmlhttp.responseXml; //将ajax对象获取的xml数据赋值
}
}
//GET方式发送信息
xmlhttp.open("GET","ajax_getCity.php?pIndex="+pIndex,true);
xmlhttp.send();
//POST方式发送信息
xmlhttp.open("POST","ajax_test.asp",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("fname=Bill&lname=Gates");
多了也不会,就知道一点。 |