iframe on the page bottom: avoid automatic scroll of the page

后端 未结 7 1457
心在旅途
心在旅途 2020-12-25 13:46

I have an iframe from the middle to bottom on a page. When I load the page it scrolls to the bottom. I tried to body onload window.scroll(0,0) but

7条回答
  •  Happy的楠姐
    2020-12-25 13:47

    Similar method but using classes.. I added a class to the iFrame's parent div of "iframe_display" with a style inside that of visibility: hidden. On page load I then used jQuery to remove the class

    .iframe_display{visibility:hidden}
    
    $(function(){
        $('#iframe_wrapper').removeClass('iframe_display');
    });
    

    This takes the focus away from the iFrame and stops the scrolling down to the iFrame on page load

提交回复
热议问题