GWT back button browser

后端 未结 5 877
长情又很酷
长情又很酷 2021-01-18 11:08

For example current page is www.google.com. But I typed a different website address in address bar and clicked. This site has fully GWT code.

But I like to back to t

5条回答
  •  灰色年华
    2021-01-18 12:01

    You can implement the HistoryListener interface: your class's method onHistoryChanged will be called (with a String token) on every click to the back and forward buttons. You can then interact with the History class, which has e.g. a back() static method to "go back". However, I'm not entirely sure if it goes back all the way to before GWT started (but it's sure worth trying;-).

提交回复
热议问题