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