注册 登录
编程论坛 jQuery论坛

readyState的值为什么不变化

wbl313 发布于 2007-03-07 14:32, 1864 次点击
var xmlHttp;

function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}
}

function doSearch(){
createXMLHttpRequest();
xmlHttp.onreadystatechange=handleStateChange;
var url="/wms/wmtsppdmul.html?method=ajax";
alert(xmlHttp.readyState);
xmlHttp.open("GET",url,true);
alert(xmlHttp.readyState);
xmlHttp.send();
alert(xmlHttp.readyState);
}

function handleStateChange(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
clearPreviousResults();
parseResults();
}
}
}
我用alert()打印发现readyState的值只有0,1后面的怎么没有出来?请高手帮忙看看,在线等!!!!
2 回复
#2
牛虻2007-03-13 17:28
把alert(xmlHttp.readyState);放入handleStateChange()函数的第一句试试
#3
jiushini502007-04-07 13:16

当然会有变化了,总共有4个值,1,2,3,4,5 分别的代表不同的意思,具体去网上找找,

1