履歴を残しつつページを遷移するには、location.assign を使用します。
サンプルソース
例)ボタンを押すと、履歴を残しつつhoge.htmlへ遷移する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script> function test(){ //履歴を残しつつ、hoge.htmlページへ遷移する location.assign('hoge.html'); //例)replaceで遷移すると履歴が残りません。 //location.replace('hoge.html'); } </script> </head> <body> <input type="button" value="ボタン" onclick="test();"> </body> </html> |
解説
- 履歴を残すので、ブラウザの「戻る」ボタンでページを戻ることができます。
- 動き的には、location.hrefと同じです。