当 url 包含锚点时,获取页面加载时网页滚动条的垂直位置
我使用 jQuery 的scrollTop() 方法来获取页面加载时滚动条的垂直位置。我需要在执行 url 中的锚点后获取此值(例如 url:www.domainname.com#foo)。我可以使用下面的代码,它可以在 Firefox 和 IE 中工作:
ex url: www.domainname.com#foo
$(document).ready(function() {
if ($(this).scrollTop() > 0) {
// then a conditional statement based on the scrollTop() value
if ($(this).scrollTop() > $("#sidenav").height()) { ...
但在 Safari 和 Chrome 中 document.ready() 似乎在锚点之前执行,因此 scrollTop() 在页面加载时返回 0这个场景。在 Chrome 和 Safari 中执行锚点后,如何访问页面加载时的 scrollTop() 值?
I am using jQuery's scrollTop() method to get the vertical position of the scroll bar on pageload. I need to get this value after the anchor in the url is executed (ex url: www.domainname.com#foo). I can use the following code and it works in Firefox and IE:
ex url: www.domainname.com#foo
$(document).ready(function() {
if ($(this).scrollTop() > 0) {
// then a conditional statement based on the scrollTop() value
if ($(this).scrollTop() > $("#sidenav").height()) { ...
But in Safari and Chrome document.ready() seems to execute before the anchor so scrollTop() returns 0 on page load in this scenario. How can I access the scrollTop() value on page load after the anchor executes in Chrome and Safari?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能只想做一些快速而肮脏的事情,例如
setTimeout
,无论需要多少毫秒才能从 Chrome 或 Safari 可靠地获取它。请注意,您也可以使用
if ($.browser. webkit)
,尽管此功能已被弃用,并且可能会移动到插件而不是主 jQuery(有利于功能检测)。You might just want to do something quick-and-dirty like
setTimeout
for however many milliseconds it takes to get it from Chrome or Safari reliablyNote that you can also use
if ($.browser.webkit)
, although this feature is deprecated and may be moved to a plugin instead of the main jQuery (in favor of feature detection).