H5页面弹窗后禁止滚动及禁止滚动释放

1.禁止页面滚动

        document.getElementsByTagName('body')[0].setAttribute('style', 'position:fixed; width:100%;')

2.释放

         document.getElementsByTagName('body')[0].setAttribute('style', 'position:relative;')

可以将这两行代码封装为两个函数,随时使用。

猜你喜欢

转载自blog.csdn.net/Stiven_Lu/article/details/82148233
今日推荐