Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 223 Bytes

打开模态时防止身体滚动.md

File metadata and controls

13 lines (9 loc) · 223 Bytes

打开模态时防止身体滚动

打开模态时禁止在 body 元素上滚动

document.body.style.overflow = 'hidden'

关闭模态时允许滚动

document.body.style.removeProperty('overflow')