Ajax # 和滚动到 #

发布于 2024-10-25 23:00:04 字数 66 浏览 0 评论 0原文

是否可以同时拥有“AJAX”哈希标记 # 以及向下滚动到一个的标记?

谢谢。

Is it possible to have both an "AJAX" hash mark # as well as a scroll down to one?

Thanks.

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

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

发布评论

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

评论(2

要走就滚别墨迹 2024-11-01 23:00:04

不。

# 是 URL 中的特殊字符,它将 URL 的其余部分标记为片段标识符,因此它后面的所有内容都引用 HTML 元素 id,或当前的命名锚点页。 (来源

Facebook 和新 Twitter 网址中的 shebang/hashbang (#!) 有何用途? - 它是适用于 Googlebot。

是的。

如果你真的想两者兼得,滚动到位可以通过 JavaScript 捏造宽度。这不会很漂亮。

No.

The # is a special character in a URL, it marks the rest of the URL as a fragment identifier, so everything after it refers to an HTML element id, or a named anchor in the current page. (Source)

What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for? - it's only for Googlebot.

Yes.

If you really want to have both, the scroll-to bit can be fudged width JavaScript. It wouldn't be pretty.

成熟的代价 2024-11-01 23:00:04

据我所知,片段标识符中不允许使用#。您可以将其编码为 %23 并用它做一些事情。

如果您正在执行希望能够滚动到的页面内容,则可以通过向链接添加特定类或其他内容来劫持链接。

另外,请考虑阅读history.pushState等:

https://developer.mozilla.org/ en/DOM/Manipulate_the_browser_history

As far as I know, # is not allowed in a fragment identifier. You could encode it as %23 and do something with that maybe.

If you're doing on-page stuff that you would like to be able to scroll to, you could just hijack links by adding a certain class to them or something.

Also, consider reading up on history.pushState and such on:

https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文