// 返回上次浏览位置 $(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
原文地址:https://www.cnblogs.com/sdsd123/p/11169511.html
时间: 2024-10-25 10:48:49