美文网首页
返回页面位置跳转到上次浏览位置

返回页面位置跳转到上次浏览位置

作者: 追随你的直觉 | 来源:发表于2020-04-17 09:54 被阅读0次

//滚动时保存滚动位置

            $(window).scroll(function () {

                console.log($(window).scrollTop());

                if ($(document).scrollTop() != 0) {

                    localStorage.setItem("offsetTop", $(window).scrollTop());

                }

            });

//onload时,取出并滚动到上次保存位置

            window.onload = function () {

                var offset = localStorage.getItem("offsetTop");

                console.log(offset);

                $(document).scrollTop(offset);

            };

相关文章

网友评论

      本文标题:返回页面位置跳转到上次浏览位置

      本文链接:https://www.haomeiwen.com/subject/xkzsvhtx.html