How to disable scrolling the document body?

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

    If you want to use the iframe's scrollbar and not the parent's use this:

    document.body.style.overflow = 'hidden';
    

    If you want to use the parent's scrollbar and not the iframe's then you need to use:

    document.getElementById('your_iframes_id').scrolling = 'no';
    

    or set the scrolling="no" attribute in your iframe's tag: