求大神解释为什么getAllResponseHeaders()在firefox和chrome下无法正常工作!
<scripttype="text/javascript">varxmlhttp;if(window.XMLHttpRequest){//codeforIE7+,Fire...
<script type="text/javascript">
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","http://www.baidu.com",true);
xmlhttp.send();
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4){
document.getElementById("DemoHn").innerHTML="deta";
alert(xmlhttp.getAllResponseHeaders());
}
}
</script>
用IE测试这段代码一点问题都没有,但是我用firefox和chrome测试就只弹出一个空白提示框……
如果是firefox和chrome屏蔽了这个的话那应该如何读取HTML的head信息!! 展开
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","http://www.baidu.com",true);
xmlhttp.send();
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4){
document.getElementById("DemoHn").innerHTML="deta";
alert(xmlhttp.getAllResponseHeaders());
}
}
</script>
用IE测试这段代码一点问题都没有,但是我用firefox和chrome测试就只弹出一个空白提示框……
如果是firefox和chrome屏蔽了这个的话那应该如何读取HTML的head信息!! 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询