The history object stores the user’s browsing history, starting from the time the window was opened
history.go(num); num 可以取值正负整数,负数表示向后跳转 ( 后退 ) ,正数表示向前跳转 ( 前进 ) ,num 表示跳转的页面数 history.go("xxx.com"); 跳转到 xxx.com 页面 history.back(); 后退一页 history.forward(); 前进一页
The above is the detailed content of Several methods of history. For more information, please follow other related articles on the PHP Chinese website!