当前位置 : 主页 > 手机开发 > 无线 >

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

来源:互联网 收集:自由互联 发布时间:2021-06-10
// 返回上次浏览位置 $(function () { var str = window.location.href; str = str.substring(str.lastIndexOf( " / " ) + 1 ); if ($.cookie(str)) { $( " html,body " ).animate({ scrollTop: $.cookie(str) }, 1000 ); } else { } }) $(window).sc
 // 返回上次浏览位置
    $(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
网友评论