Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何可能的方法来设置文档窗口标题。我有一个网页,在那个网页中我们正在加载 Iframe(来自另一个项目)。默认情况下它采用当前网页标题。我如何用当前覆盖标题iframe 页面标题。
我想这就是你要找的。以最适合您的方式获取 iframe 的标题,然后使用以下方法设置文档标题:
document.title = "New Title"
如果您不知道如何获取 iframe 标题,请尝试以下方法:
document.title = document.getElementById("main-content-iframe").contentDocument.title;