How to hide the body scroll bar when showing modal dialog?

后端 未结 4 1379
独厮守ぢ
独厮守ぢ 2021-02-18 20:21

My home page has a lot of content. When I create any modal dialog, the body content scroll bar is visible and when we scroll, it scrolls down to the bottom of the page.

4条回答
  •  长发绾君心
    2021-02-18 20:56

    Add $('body').css('overflow','hidden') to your function that shows the modal, and $('body').css('overflow','scroll') to your function that closes the modal.

提交回复
热议问题