87,992
社区成员
发帖
与我相关
我的任务
分享
for(i=0;i<2;i++)
{
var xmlhttp;
if(window.XMLHttpRequest){
//非IE
xmlhttp=new XMLHttpRequest();
}else if(window.ActiveXObject){
try{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
xmlhttp= new ActiveXObject("Msxml2.XMLHTTP");
}
}
xmlhttp.onreadystatechange=function(){
if(4==xmlhttp.readystate){
if(200==xmlhttp.status){
showData;//在页面显示数据 在不同的DIV中
}
xmlhttp.open("post","URL",false);
//设定http头
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
//发送请求
xmlhttp.send(null);
}