How to jump to top of browser page

后端 未结 8 890
后悔当初
后悔当初 2020-12-22 15:48

I\'m writing a modal popup and I need the browser to jump to the top of the screen when the open modal button is pressed. Is there a way to scroll the browser to the top usi

8条回答
  •  抹茶落季
    2020-12-22 16:32

    I know this is old, but for those having problems in Edge:

    Plain JS: window.scrollTop=0;

    Unfortunately, scroll() and scrollTo() throw errors in Edge.

提交回复
热议问题