From 6148d1efc1f2dcd19c24f488ef50b63a17583f12 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Fri, 11 Mar 2022 00:46:22 +0900 Subject: History インターフェイスのメソッドの記事を移行準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/history/forward/index.html | 71 ----------------------------- files/ja/web/api/history/forward/index.md | 71 +++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 files/ja/web/api/history/forward/index.html create mode 100644 files/ja/web/api/history/forward/index.md (limited to 'files/ja/web/api/history/forward') diff --git a/files/ja/web/api/history/forward/index.html b/files/ja/web/api/history/forward/index.html deleted file mode 100644 index 5e55df100b..0000000000 --- a/files/ja/web/api/history/forward/index.html +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: History.forward() -slug: Web/API/History/forward -tags: - - API - - HTML DOM - - History - - History API - - Method - - Reference - - Web -translation_of: Web/API/History/forward ---- -
{{APIRef("History API")}}
- -

History.forward() メソッドにより、ブラウザーはセッション履歴の一つ次のページに移動します。これは {{domxref("History.go", "history.go(1)")}} を呼び出すのと同じ効果があります。

- -

このメソッドは{{glossary("asynchronous", "非同期")}}です。移動が完了したことを検知したい場合は {{event("popstate")}} イベントのリスナーを追加してください。

- -

構文

- -
history.forward()
- -

- -

以下の例では、セッション履歴の一つ次のステップへ進めるボタンを作成します。

- -

HTML

- -
<button id='go-forward'>Go Forward!</button>
- -

JavaScript

- -
document.getElementById('go-forward').addEventListener('click', e => {
-  window.history.forward();
-})
- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("HTML WHATWG", "browsers.html#history", "History")}}{{Spec2("HTML WHATWG")}}{{SpecName("HTML5 W3C")}} から変更なし
{{SpecName("HTML5 W3C", "browsers.html#history", "History")}}{{Spec2("HTML5 W3C")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.History.forward")}}

- -

関連情報

- - diff --git a/files/ja/web/api/history/forward/index.md b/files/ja/web/api/history/forward/index.md new file mode 100644 index 0000000000..5e55df100b --- /dev/null +++ b/files/ja/web/api/history/forward/index.md @@ -0,0 +1,71 @@ +--- +title: History.forward() +slug: Web/API/History/forward +tags: + - API + - HTML DOM + - History + - History API + - Method + - Reference + - Web +translation_of: Web/API/History/forward +--- +
{{APIRef("History API")}}
+ +

History.forward() メソッドにより、ブラウザーはセッション履歴の一つ次のページに移動します。これは {{domxref("History.go", "history.go(1)")}} を呼び出すのと同じ効果があります。

+ +

このメソッドは{{glossary("asynchronous", "非同期")}}です。移動が完了したことを検知したい場合は {{event("popstate")}} イベントのリスナーを追加してください。

+ +

構文

+ +
history.forward()
+ +

+ +

以下の例では、セッション履歴の一つ次のステップへ進めるボタンを作成します。

+ +

HTML

+ +
<button id='go-forward'>Go Forward!</button>
+ +

JavaScript

+ +
document.getElementById('go-forward').addEventListener('click', e => {
+  window.history.forward();
+})
+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("HTML WHATWG", "browsers.html#history", "History")}}{{Spec2("HTML WHATWG")}}{{SpecName("HTML5 W3C")}} から変更なし
{{SpecName("HTML5 W3C", "browsers.html#history", "History")}}{{Spec2("HTML5 W3C")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.History.forward")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf