我有一些代码在新窗口中显示来自 html、xml 或 txt 文件的内容。我遇到了 getElementById 有时返回 null 的问题。它通常似乎在 Chrome 中工作,但 IE8 尤其是 Firefox 非常不稳定。
更具体地说,一旦我尝试显示 txt 文件,它将无法工作。
我已经尝试添加(在我的情况下) newWindow.onload = function(){ ... 和 $(newWindow.document).ready(function() { ... 虽然,因为我是 javascript 和我可能做错了。
下面是相关代码:
Javascript:
function newWindow(pathname, type){
var newWindow = window.open("newWindow.php");
$.ajax({
type: "post",
url: "windowHelper.php",
data: {pathname: pathname, type: type},
dataType: "json"
})
.done(function(data, textStatus, jqXHR){ //tried to add the .onload and .ready here
newWindow.document.getElementById("newWindow").innerHTML = data.data1;
})
.fail(function(jqXHR, textStatus, errorThrown){
newWindow.document.getElementById("newWindow").innerHTML = textStatus + errorThrown;
});
}
php:
if(isset($_POST["pathname"]) && !empty($_POST["pathname"]) && isset($_POST["type"]) && !empty($_POST["type"])){
$pathname = $_POST["pathname"];
$type = $_POST["type"];
$filename = str_replace("/var/tmp/ciscat/", "", $pathname);
if($type == 'html'){
$contentString = str_replace("<html>", "", file_get_contents($pathname));
$contentString = str_replace("</html>", "", file_get_contents($pathname));
$contentString = str_replace("<body>", "", file_get_contents($pathname));
$contentString = str_replace("</body>", "", file_get_contents($pathname));
}
else if($type == 'xml'){
$contentString = htmlspecialchars(file_get_contents($pathname), ENT_QUOTES);
}
else if($type == 'txt'){
$contentString = str_replace("\n", "<br/ >", file_get_contents($pathname));
}
else{
$contentString = "Blir feeeeel!!";
}
$reportContent = "<p class = 'normalText'>Content of the file: $filename. Download the file in order to utilise the full content. </p> $contentString";
print json_encode(array( "data1" => $reportContent));
}
HTML:
<!DOCTYPE html>
<html>
<head>
<SCRIPT type="javascript/text" src="functions.js"></SCRIPT>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id = "newWindow">
</div>
</body>
</html>
有没有人有任何我可以尝试的其他想法?任何帮助将非常感激!:)
我怀疑这里可能有一些“坏”代码,对此的一些评论也会很好,但我的主要问题是 evul getElementById。
先感谢您