#2
hugeannex2008-10-10 08:42
|
在IE7.0 下xmlHttp.ResponseText这个返回的是unfined,不管返回是中文还英文,都是这样
程序其它地方没有错,代码如下
if(xmlHttp.readyState==4)
{
textInfo=xmlHttp.ResponseText;
if(xmlHttp.status==200)
{
var intro=document.getElementById("introduce");
window.alert(textInfo);
}
else window.alert(xmlHttp.status+"错误");
}
请高手帮忙看下