移动端弹窗禁止滚动问题

弹窗禁止滚动


.mask{display: block; position: fixed;top: 0;right: 0;bottom: 0;left: 0; overflow: hidden;background-color: rgb(0, 0, 0);filter: alpha(opacity=60); background-color: rgba(0, 0, 0, 0.6); z-index: 5;}

$('.mask').on('touchstart',function(e){

    //event.preventDefault();

    e.preventDefault();

});

遮罩底层不滑动,移动端有个侧边栏,滑动侧边栏,滑动侧边栏底层也影响滑动,问题求解决


.side{position: fixed; top: 50px; bottom: 0; left: 0; overflow-x: hidden; width: 200px; z-index: 99;}

自己填坑:

PC端
http://www.zhangxinxu.com/wor...
移动端
http://www.zhangxinxu.com/wor...

慕莱坞森
浏览 738回答 1
1回答

慕村225694

你的JS代码写错了$('.mask').on('touchstart',function(e){    e.preventDefault();});
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript