javascript 如何在about:blank选项卡中运行这段代码

px9o7tmv  于 2023-05-05  发布在  Java
关注(0)|答案(1)|浏览(144)
var a = document.getElementById("rusic-modal") || document.createElement("iframe"); a.setAttribute("allow", "fullscreen");
a.src = "https://google.com"; a.id = "rusic-modal";
a.style = "position:fixed;width:100vw;height:100vh;top:0px;left:0px;right:0px;bottom:0px;z-index:2147483647;background-color:white;border:none;"; document.body.appendChild(a);

我不能在一个新的about:blank窗口上运行这段代码。我想要一个about:blank来打开,然后运行上面的代码去google.com

6rqinv9w

6rqinv9w1#

您可以使用target= '_blank'将链接设置为在新选项卡中打开。
所以在你的剧本里,

var a = document.getElementById("rusic-modal") || document.createElement("iframe"); a.setAttribute("allow", "fullscreen");
a.src = "https://google.com"; a.id = "rusic-modal";
a.target = "_blank";
a.style = "position:fixed;width:100vw;height:100vh;top:0px;left:0px;right:0px;bottom:0px;z-index:2147483647;background-color:white;border:none;";
document.body.appendChild(a);

希望你觉得这有用!

相关问题