jquery Bootstrap砌体布局-保持滚动位置

vhipe2zx  于 2023-08-04  发布在  jQuery
关注(0)|答案(1)|浏览(112)

我有一个难题,似乎解不出答案。
我使用Bootstrap 5和砖石布局,按照他们的建议在这里:https://getbootstrap.com/docs/5.0/examples/masonry/而且效果很好。
我还需要使用一个维护滚动脚本。问题是,维护卷轴不工作时,使用BS砌体。拆除BS砌体并按预期维护卷轴工程。
这是我的maintainscroll脚本-任何想法都很好-提前感谢。

window.onload = function() {
                var scrollpos = sessionStorage.getItem('scrollpos');
                if (scrollpos) window.scrollTo(0, scrollpos);                   
                };          
                window.onbeforeunload = function(e) {
                sessionStorage.setItem('scrollpos', window.scrollY);
                };

字符串

ep6jt1vc

ep6jt1vc1#

调整脚本后,网页加载完成消防-工作的待遇-感谢CBROE的头了。

window.onload = function() {
                var scrollpos = sessionStorage.getItem('scrollpos');
                if (scrollpos) window.scrollTo(0, scrollpos);                   
                };          
                window.onbeforeunload = function(e) {
                sessionStorage.setItem('scrollpos', window.scrollY);
                };

字符串

相关问题