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

后端 未结 20 1436
抹茶落季
抹茶落季 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条回答
  •  萌比男神i
    2020-12-01 02:06

    I know this has been answered but none of these solutions worked for me. I needed to take a different approach. I am using PhoneGap and am compiling my code natively so I had to move the background to the body. I hope this helps someone else. Or if there a cleaner way to do this please feel free to comment...

    $(document).on('shown.bs.modal', '.modal', function (e) {
    
        $("#" + e.target.id).find(".modal-backdrop").css("z-index", $("#" + e.target.id).css("z-index")).insertBefore("#" + e.target.id);
    
    });
    

提交回复
热议问题