基本原理:使用当弹窗出现的时候将页面body的position设置为fixed并记录此刻滚动的位置,弹窗消失去除position属性
1.打开弹框前
startFixedScroll(scrollY) { document.body.style.cssText += 'position:fixed;width:100%;top:-' + scrollY + 'px;'; },
2.关闭弹框后
let body = document.body; body.style.position = ''; let top = body.style.top; document.body.scrollTop = document.documentElement.scrollTop = -parseInt(top); body.style.top = '';
网友评论