Reload browser does not reset page to top

后端 未结 4 1165
梦毁少年i
梦毁少年i 2020-12-06 02:44

I thought when you clicked refresh, that the browser was supposed to reset your page to the top? I am using a js accordion and when I refresh, it closes the acc

4条回答
  •  隐瞒了意图╮
    2020-12-06 03:19

    Try this if none of the above worked. This will trick the browser to think it was at the top of the document before refresh.

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

提交回复
热议问题