为什么获胜't此网页加载完毕

Why won't this web page finish loading?

本文关键字:网页 加载 获胜 为什么      更新时间:2023-09-26

如果我运行这段代码,为什么页面永远无法完成加载?它将始终在我的浏览器选项卡上显示连接。

这是一个简单的javascript,它将提示一个警告框,并将整个文档更改为单词测试。

Javascript-testQuery.js

(function (window, undefined) {
var testQuery = function(obj) {
        if (!(this instanceof testQuery)) {
            return new testQuery(obj);
        }
}

testQuery.alertMessage = function () {
        alert("alert");
    document.write("testing");
};
   window.testQuery = testQuery;
}) (window);

HTML-testQuery.HTML

<html>
<head>
<script src="testQuery.js"></script>
<script>
function onClick() {
testQuery.alertMessage();
}
</script>
</head>

因为您没有关闭文档。

document.close()