1. 程式人生 > >js跳轉

js跳轉

ava location http asc ext text BE 鏈接 post

鏈接:https://www.cnblogs.com/lina6251125/p/6392299.html

知識點:

location.href跳轉

location.replace跳轉

location.reload刷新

特定頁面下:

history.go(-1);後退

history.go(1);前進

例:

1頁面 2頁面 3頁面

1頁面使用location.href跳轉至2頁面,2頁面使用location.replace跳轉至3頁面

這時:使用javascript:history.go(-1);後退將直接回到1頁面

js跳轉