document.title 的替代品?
我正在尝试返回页面标题。使用 document.title 似乎并不可靠。它通常返回页面内框架的标题,有时不返回任何内容,具体取决于网页。我想返回 Gmail 页面上选项卡顶部显示的标题,例如 Gmail - 收件箱等..
。 document.title 有其他选择吗?我正在 Chrome 上进行测试。
I'm attempting to return the page title. Using document.title doesn't appear to be reliable. It's often returning the title of frames within a page and sometimes nothing depending on the web page. I'd like to return the title which appears at the top of the tab e.g Gmail - Inbox etc..
on a Gmail page. Is there any alternatives to document.title? I'm testing on Chrome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来问题出在框架上。您可以尝试
top.document.title
,它将为您提供最顶层框架的标题。Sounds like the problem is with frames. You could try
top.document.title
, which will give you the title of the topmost frame.