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

Posted sdsd123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端列表进入详情后返回列表回到原位置相关的知识,希望对你有一定的参考价值。

 // 返回上次浏览位置
    $(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

 

以上是关于移动端列表进入详情后返回列表回到原位置的主要内容,如果未能解决你的问题,请参考以下文章

移动端弹出层之后禁用底部滚动条关闭回到原位置

vue移动端webview视频轻应用

移动端拖拽(模块化开发,触摸事件,webpack)

路由跳转后跳转回来保留滚动条位置

Vue缓存组件或页面实用技巧 - keepAlive销毁

vue keep-alive 实现详情返回列表保留页面数据