关于在IE7.0下xmlHttp.ResponseText返回值的问题
在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+"错误");
}
请高手帮忙看下