gpt4 book ai didi

javascript - 如何更改:blank on window.打开

转载 作者:行者123 更新时间:2023-12-01 08:35:08 25 4
gpt4 key购买 nike

您好,是否可以在新打开的窗口中删除“关于:”空白?因为我正在为我的应用程序弹出窗口创建一个新窗口,并将在其上创建一些内容。我下面有一个简单的示例。我的问题是 URL 上有“about:blank”,是否可以删除它? enter image description here

<html>
<body>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var myWindow = window.open("", "", "width=200,height=100");
myWindow.document.write('<html><head> <title>Sample</title><link rel="stylesheet" type="text/css" href="css/newsCSSWindow.css"></head><body>');
myWindow.document.write("Sample Window");
myWindow.document.write('</body></html>');
}
</script>
</body>
</html>

最佳答案

根据Mozilla Developer docs open() 的第一个参数是一个 url。如果 url 是空字符串,则会使用主窗口的默认工具栏创建一个新的空白窗口 (URL about:blank)。 URL 也不会立即加载。当 window.open() 返回时,窗口始终包含 about:blank。 URL 的实际获取会被推迟,并在当前脚本 block 执行完毕后开始。窗口创建和引用资源的加载是异步完成的。

关于javascript - 如何更改:blank on window.打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57157579/

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