Authored by zhangxiaoru

弹框 禁止滚动

... ... @@ -82,3 +82,8 @@ $('.withhold').click(function() {
point(2);
$('.set-trend-world').hide();
});
$('.set-trend-world').on('mousewheel touchmove', function(e) {
e.preventDefault();
return false;
});
... ...