How to disable scrolling the document body?

前端 未结 6 530
一整个雨季
一整个雨季 2020-12-28 15:14

I have a HTML which has lot of content and a vertical scrollbar appears as soon as the HTML is loaded. Now from this HTML a full screen IFRAME is loaded. The problem is when

6条回答
  •  渐次进展
    2020-12-28 15:50

    add this css

    body.disable-scroll {
        overflow: hidden;
    }
    

    and when to disable run this code

    $("body").addClass("disable-scroll");
    

    and when to enabled run this code

    $("body").removeClass("disable-scroll")
    

提交回复
热议问题