Force page scroll position to top at page refresh in HTML

前端 未结 13 1256
野的像风
野的像风 2020-12-02 07:57

I am building a website which I am publishing with divs. When I refresh the page after it was scrolled to position X, then the page is loaded with the scroll po

13条回答
  •  南笙
    南笙 (楼主)
    2020-12-02 08:50

    The answer here(scrolling in $(document).ready) doesn't work if there is a video in the page. In that case the page is scrolled after this event is fired, overriding our work.

    Best answer should be:

    $(window).on('beforeunload', function(){
        $(window).scrollTop(0);
    });
    

提交回复
热议问题