当前位置:首页 > 移动开发 > 正文

移动端列表进入详情后返回列表回到原位置

2024-03-31 移动开发

 // 返回上次浏览位置
    $(function () {
        var str = window.location.href;
        str = str.substring(str.lastIndexOf("/")   1);
        if ($.cookie(str)) {

            $("html,body").animate({ scrollTop: $.cookie(str) }, 1000);
        }
        else {
        }
    })

    $(window).scroll(function () {
        var str = window.location.href;
        str = str.substring(str.lastIndexOf("/")   1);
        var top = $(document).scrollTop();
        $.cookie(str, top, { path: / });
        return $.cookie(str);
    });
    // 返回上次浏览位置 end

 

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/yidong/25716.html