gpt4 book ai didi

javascript - Internet Explorer 中的 Ajax responseText Null?

转载 作者:行者123 更新时间:2023-11-30 06:05:24 25 4
gpt4 key购买 nike

我有一些简单的 ajax 代码。我想要做的就是将一个 php 页面加载到一个容器中,但是在 Internet Explorer 中我得到了错误:SCRIPT5007:无法设置属性“innerHTML”的值:对象为 null 或未定义。这意味着 Internet Explorer 将 xmlhttp.responseText 视为 null。它以我尝试获取 ResponseText 的任何方式执行此操作。这是我的代码:

 function changeSort(type, order)
{
var xmlhttp;
var container = document.getElementById("content");

if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
container.innerHTML = xmlhttp.responseText; //Error Line
}
}
xmlhttp.open("GET","Scripts/tag.php?sort=ASC&&tag=All%20Games&&type="+type,true);
xmlhttp.send();
}

有什么想法吗?

最佳答案

Unable to set value of the property 'innerHTML': object is null or undefined. Which means that internet explorer sees xmlhttp.responseText as null.

不,这意味着 Internet Explorer 将 container 视为 null。如果您尝试在 innerHTML 上设置一个 null 值,它会被强制转换为字符串 'null'

可能在调用 changeSort 时,IE 在文档中找不到 ID 为 content 的任何元素。

"Scripts/tag.php?sort=ASC&&tag=All%20Games&&type="+type

你确定你指的是双符号吗?

关于javascript - Internet Explorer 中的 Ajax responseText Null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5284704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com