aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/forward
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/window/forward
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/window/forward')
-rw-r--r--files/ja/web/api/window/forward/index.html56
1 files changed, 56 insertions, 0 deletions
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
+---
+<div>{{ApiRef}}{{Non-standard_header}} {{deprecated_header}}</div>
+
+<h2 id="Summary" name="Summary">概要</h2>
+
+<p>ウィンドウの文書の履歴のひとつ分だけ前へ進めます。これは Firefox 固有のメソッドであり、Firefox 31 で削除しました。代わりに、標準の {{domxref("History.forward", "window.history.forward()")}} メソッドを使用してください。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre>window.forward();</pre>
+
+<h3 id="Parameters" name="Parameters">引数</h3>
+
+<p>ありません。</p>
+
+<h3 id="Return_value" name="Return_value">戻り値</h3>
+
+<p><code>undefined</code> です。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush:js">function goForward() {
+ if (canGoForward) {
+ window.forward();
+ }
+}
+</pre>
+
+<h2 id="Specification" name="Specification">仕様</h2>
+
+<p>どの仕様にも属していません。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<p>この非標準メソッドは Firefox だけが実装しており、Firefox 31 で削除しました。</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{domxref("History.back()")}}</li>
+ <li>{{domxref("History.forward()")}}</li>
+</ul>