Created
October 19, 2018 06:14
-
-
Save Calerme/47209d3fe990830b95b9d67b2d550817 to your computer and use it in GitHub Desktop.
禁止 scrollbar 拖动
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('scroll', function (e) { | |
e.preventDefault(); | |
e.stopPropagation(); | |
document.documentElement.scrollTop = 0; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment