blob: 1788518a25a53b42605f77f9609de25335741ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
---
title: History.forward()
slug: Web/API/History/forward
tags:
- API
- HTML DOM
- History
- 履歴 API
- メソッド
- リファレンス
browser-compat: api.History.forward
translation_of: Web/API/History/forward
---
{{APIRef("History API")}}
**`History.forward()`** メソッドにより、ブラウザーはセッション履歴の 1 つ次のページに移動します。これは {{domxref("History.go", "history.go(1)")}} を呼び出すのと同じ効果があります。
このメソッドは{{glossary("asynchronous", "非同期")}}です。移動が完了したことを検知したい場合は {{domxref("Window/popstate_event", "popstate")}} イベントのリスナーを追加してください。
## 構文
```js
history.forward()
```
## 例
以下の例では、セッション履歴の 1 つ次のステップへ進めるボタンを作成します。
### HTML
```html
<button id='go-forward'>Go Forward!</button>
```
### JavaScript
```js
document.getElementById('go-forward').addEventListener('click', e => {
window.history.forward();
})
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{domxref("History")}}
- [履歴 API での作業](/ja/docs/Web/API/History_API/Working_with_the_History_API)
|