From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/window/forward/index.html | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 files/ja/web/api/window/forward/index.html (limited to 'files/ja/web/api/window/forward') diff --git a/files/ja/web/api/window/forward/index.html b/files/ja/web/api/window/forward/index.html new file mode 100644 index 0000000000..8c223f2d18 --- /dev/null +++ b/files/ja/web/api/window/forward/index.html @@ -0,0 +1,56 @@ +--- +title: window.forward +slug: Web/API/Window/forward +tags: + - API + - DOM + - Firefox + - Gecko + - Method + - Non-standard + - Obsolete + - Window + - forward +translation_of: Web/API/Window/forward +--- +
{{ApiRef}}{{Non-standard_header}} {{deprecated_header}}
+ +

概要

+ +

ウィンドウの文書の履歴のひとつ分だけ前へ進めます。これは Firefox 固有のメソッドであり、Firefox 31 で削除しました。代わりに、標準の {{domxref("History.forward", "window.history.forward()")}} メソッドを使用してください。

+ +

構文

+ +
window.forward();
+ +

引数

+ +

ありません。

+ +

戻り値

+ +

undefined です。

+ +

+ +
function goForward() {
+  if (canGoForward) {
+    window.forward();
+  }
+}
+
+ +

仕様

+ +

どの仕様にも属していません。

+ +

ブラウザー実装状況

+ +

この非標準メソッドは Firefox だけが実装しており、Firefox 31 で削除しました。

+ +

関連情報

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