Reload browser does not reset page to top

后端 未结 4 1163
梦毁少年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条回答
  •  Happy的楠姐
    2020-12-06 03:21

    The browser will scroll down to where you were before the reload, as an attempt at convenience. It's only really useful for excessively long pages.

    You can "fix" this like so:

    window.onload = function() {document.body.scrollTop = document.documentElement.scrollTop = 0;};
    

提交回复
热议问题