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
1条答案
按热度按时间6rqinv9w1#
您可以使用
target= '_blank'
将链接设置为在新选项卡中打开。所以在你的剧本里,
希望你觉得这有用!