如何在新选项卡中打开链接而不看到新选项卡中的URL ?



我一直在尝试很多事情使这个工作,但没有任何东西。我怎么能打开一个网站在一个新的选项卡,并有它不显示正在使用的URL ?我从这个网站上得到了这个想法。新的选项卡URL显示为about:blank。然而,我一直没能让它工作。我是Javascript新手,所以请原谅我!谢谢! !

这是我尝试过的:

function NewTab() {
window.open(
"https://www.mywebsite.com", "_blank");
}

在浏览了整个网站后,我找到了打开新标签页的JS。向用户公开URL:

var urlObj = new window.URL(window.location.href);
var url = "https://tam-shellshock.franklinformulas.com"
if (url) {
var win;
document.querySelector('a').onclick = function() {
if (win) {
win.focus();
} else {
win = window.open();
win.document.body.style.margin = '0';
win.document.body.style.height = '100vh';
var iframe = win.document.createElement('iframe');
iframe.style.border = 'none';
iframe.style.width = '100%';
iframe.style.height = '100%';
iframe.style.margin = '0';
iframe.src = url;
win.document.body.appendChild(iframe);
}
};
}
<a>Press here</a>

相关内容

  • 没有找到相关文章

最新更新