jquery – 如何在加载页面时禁用锚点跳转

前端之家收集整理的这篇文章主要介绍了jquery – 如何在加载页面时禁用锚点跳转前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我访问my_site.com/page.PHP#something时,滚动位置是携带此特定主题标签而不是页面顶部的元素之一.

执行window.scrollTo(0,0);不改变这个事实.什么可以呢?

编辑:也试过从How to disable anchor “jump” when loading a page?接受的答案.似乎不再工作.

解决方法

您需要做的是存储主题标签以供以后使用,然后将其删除,以便浏览器无需滚动到任何内容.

重要的是你不要把这部分代码放在$()或$(window).load()函数中,因为它会延迟并且浏览器已经移动到标记.

// store the hash (DON'T put this code inside the $() function,it has to be executed 
// right away before the browser can start scrolling!
var target = window.location.hash,target = target.replace('#','');

// delete hash so the page won't scroll to it
window.location.hash = "";

// now whenever you are ready do whatever you want
// (in this case I use jQuery to scroll to the tag after the page has loaded)
$(window).load(function() {
    if (target) {
        $('html,body').animate({
            scrollTop: $("#" + target).offset().top
        },700,'swing',function () {});
    }
});
原文链接:https://www.f2er.com/jquery/181526.html

猜你在找的jQuery相关文章