window.location.hash 在 firefox、opera 中的 scribd 文档中不起作用

发布于 2024-12-22 12:17:32 字数 269 浏览 0 评论 0原文

我上传了一份 scribd 上的文档

我在文档中包含了链接,以便于导航。在 Chrome 中打开时运行良好,但在 Firefox 3.6 中运行不佳。

它在 Firefox 中显示页面上的 href 路径。有人有什么想法吗?

I have uploaded one document on scribd

I have included links within the document for ease of navigation. It works fine when opened in Chrome, but not working well in Firefox 3.6.

It displays the the href path on the page in Firefox. Does anyone have any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心清如水 2024-12-29 12:17:32

我有同样的问题。我最终在 window.location.href 属性中查找哈希字符 # 并手动捕获哈希:

var hash = window.location.href.indexOf('#') == 
    -1 ? "" : window.location.href.substring(window.location.href.indexOf('#') + 1);

I had the same issue. I ended up looking for the hash character # in the window.location.href property and capturing the hash manually:

var hash = window.location.href.indexOf('#') == 
    -1 ? "" : window.location.href.substring(window.location.href.indexOf('#') + 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文