(1)js的ajax
var xmlHttp;
if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}else{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4 && xmlHttp.status==200){
var dataObj=eval("("+xmlHttp.responseText+")"); //解析json格式
}
};
xmlHttp.open("post", "excelAction", true); //发送请求
xmlHttp.send(); //发送带参数
(2)jQuery的ajax