How to disable scrolling the document body?

前端 未结 6 524
一整个雨季
一整个雨季 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:48

    The following JavaScript could work:

    var page = $doc.getElementsByTagName('body')[0];
    

    To disable Scroll use:

    page.classList.add('noscroll');
    

    To enable Scroll use:

    page.classList.remove('noscroll');
    

    In the CSS file, add:

    .noscroll {
        position: fixed!important
    }
    

提交回复
热议问题