滚动到顶部按钮重定向到主页

时间:2016-10-02 19:57:59

标签: javascript php jquery

所以,这个脚本在我的footer.php上,当按下按钮时,它会重定向到主页而不是顶部。

$(document).ready(function() {
$("#arriba").click(function() {
return $("html, body").animate({
scrollTop: 0
}, 1250), !1
})
});

更新:
非常感谢所有人,我找到了解决方案,上面的代码被插入到php实例中,我在php中创建了一个新的javascript实例,并且它在这里提供的所有代码都正常工作!

1 个答案:

答案 0 :(得分:0)

您需要使用preventDEfault来停止按钮或锚标记的行为:

$(document).ready(function() {
        $("#arriba").click(function(e) {
            e.preventDefault()
            $("html, body").animate({
                scrollTop: 0
            }, 1250);
        })
    }); 

编辑:

也试试这个:

$(document).ready(function() {
    $("#arriba").click(function(e) {
         e.preventDefault()
         window.scrollTo(0, 0);
    })
});