我正在制作一个学校游戏的反拦截器网站,并且正在使用about:blank cloaking。我需要在about:blank网站上添加一个标题,这样老师就看不到我在做什么了。
这是用于重定向的代码。
<html>
<head>
<body onclick="MyWindow1()">Click here to start</body>
</head>
<script>
(url);
var newWin = window.open
function MyWindow1(){
var win = window.open()
var iframe = win.document.createElement('iframe')
iframe.style.width = "100%";
iframe.style.height = "100%";
iframe.style.border = "none";
iframe.src = "./Main.html";
win.document.body.appendChild(iframe)
location.replace("https://www.google.com/")
}
</script>
</html>
这是Main.html代码的样子。这是about:blank站点。
<html>
<head>
<body onclick="MyWindow1()">Click here to start</body>
</head>
<script>
(url);
var newWin = window.open
function MyWindow1(){
var win = window.open()
var iframe = win.document.createElement('iframe')
iframe.style.width = "100%";
iframe.style.height = "100%";
iframe.style.border = "none";
iframe.src = "./Main.html";
win.document.body.appendChild(iframe)
location.replace("https://www.google.com/")
}
</script>
</html>
如果我只运行第二个文件,它不会显示about:blank,但会显示标题。谢谢!
2条答案
按热度按时间xnifntxz1#
可以使用
win.document.title = "Your Title Here";
设置新窗口的标题示例:
yvt65v4c2#
您不需要这样做。在任何屏幕查看应用程序中,该页面和页面标题都不会显示。