blob: 8c223f2d18d487e200334b27d7a01a63da9c04e4 (
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
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>
|