html 如何使用JavaScript打开具有指定标题的新浏览器选项卡?[重复]

a11xaf1n  于 2023-04-18  发布在  Java
关注(0)|答案(3)|浏览(86)

此问题已在此处有答案

how to show window title using window.open()?(11个回答)
4个月前关闭。
此帖子5天前编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
如何使用www.example.com新标签添加窗口标题window.open..?

const newTab   = window.open("index.html", 'wo_print')

未添加新选项卡标题
它显示url -关于:空白和标题不显示

zzlelutf

zzlelutf1#

不确定它是否与你的单引号有任何关系,但试着改变它或反之亦然。如果失败,请尝试以下操作。

newTab.document.title = "wo_print";
b4qexyjb

b4qexyjb2#

let newTab = window.open('www.google.com')
newTab.onload = function () {
  newTab.document.title = menu.menuName
}
9fkzdhlc

9fkzdhlc3#

function OpenWindow() {
        var myWindow = window.open('YourURL.html','myWindow','resizable,scrollbars');
        myWindow.document.write('<title>Windows Title</title><body><h1>Your html content</h1></body>');
}



<a style="cursor: pointer;" onclick="OpenWindow()">Open in New Window</a>

相关问题