How to prevent background scrolling when Bootstrap 3 modal open on mobile browsers?

后端 未结 20 1495
抹茶落季
抹茶落季 2020-12-01 01:45

How to prevent background scrolling when Bootstrap 3 modal open on mobile platforms? On desktop browsers the background is prevented from scrolling and works as it should.<

20条回答
  •  时光说笑
    2020-12-01 01:54

    See here: https://github.com/twbs/bootstrap/issues/7501

    So try:

    $('body').css('overflow','hidden');
    $('body').css('position','fixed');
    

    V3.0.0. should have fixed this issue. Do you use the latest version? If so post an issue on https://github.com/twbs/bootstrap/

提交回复
热议问题