javascript ajax功能函数
更新时间:2009年12月18日 00:59:36 作者:
javascript ajax功能函数,没用过的朋友看看代码,应该会有点收获。
复制代码 代码如下:
//ajax测试
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}
}
function a(){
createXMLHttpRequest()
url="${request.contextPath}/test/forMain.action";
alert(url);
statechange;
xmlHttp.open("GET",url,true);
xmlHttp.Send(null);
alert(xmlHttp.responseText);
}
function statechange(){
alert(xmlHttp.status);
if(xmlHttp.readyState == 4){//描述一种"已加载"状态;此时,响应已经被完全接收。
if(xmlHttp.status == 200){//200表示成功收到
alert("成功");
return xmlHttp.responseText; //返回值
}
else{
alert("失败");
}
}
}
相关文章
巧用ajax请求服务器加载数据列表时提示loading的方法
下面小编就为大家带来一篇巧用ajax请求服务器加载数据列表时提示loading的方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-04-04
最新评论