停用滚动但显示滚动条?
deactivate scrolling but show scrollbar?
当我改变 body 的高度并且 HTML 页面的 100% 滚动条消失时,我该如何停止
i'm getting two scrollbars after that trying this
谢谢
不要更改 css
,这将删除 scrollbar
,正如您所说的更改页面布局,而是尝试调用 jquery function
。
JS
// call your pop up and inside that function add below
$('body').on('scroll mousewheel touchmove', function(e) {
e.preventDefault();
e.stopPropagation();
return false;
});
Then when you close the modal, call the same function but replace on
with off
当我改变 body 的高度并且 HTML 页面的 100% 滚动条消失时,我该如何停止
i'm getting two scrollbars after that trying this
谢谢
不要更改 css
,这将删除 scrollbar
,正如您所说的更改页面布局,而是尝试调用 jquery function
。
JS
// call your pop up and inside that function add below
$('body').on('scroll mousewheel touchmove', function(e) {
e.preventDefault();
e.stopPropagation();
return false;
});
Then when you close the modal, call the same function but replace
on
withoff