aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/stop/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/window/stop/index.html')
-rw-r--r--files/ja/web/api/window/stop/index.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/files/ja/web/api/window/stop/index.html b/files/ja/web/api/window/stop/index.html
new file mode 100644
index 0000000000..a32bbd359a
--- /dev/null
+++ b/files/ja/web/api/window/stop/index.html
@@ -0,0 +1,58 @@
+---
+title: window.stop
+slug: Web/API/window.stop
+tags:
+ - API
+ - DOM
+ - Gecko
+ - HTML DOM
+translation_of: Web/API/Window/stop
+---
+<div>{{ApiRef}}</div>
+
+<h2 id="Summary" name="Summary">概要</h2>
+
+<p>このメソッドは、ウィンドウの読み込みを停止します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">window.stop()
+</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush:html">&lt;script&gt;
+stop();
+&lt;/script&gt;
+
+&lt;p&gt;このパラグラフは読み込まれないでしょう。&lt;/p&gt;​</pre>
+
+<h2 id="Notes" name="Notes">注記</h2>
+
+<p><code>stop()</code> メソッドは、ブラウザの停止ボタンをクリックすることと全く同じです。スクリプトが読み込まれる順番のために、<code>stop()</code> メソッドは文書の読み込みを停止できない可能性がありますが、巨大な画像、新しいウィンドウなど、読み込みを遅延させるオブジェクトの読み込みを停止することはできるでしょう。</p>
+
+<h2 id="Specification" name="Specification">仕様</h2>
+
+<table class="spectable standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML WHATWG','browsers.html#dom-window-stop','Window.stop()')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-stop', 'Window.stop')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="互換性">互換性</h2>
+
+<p>stop() メソッドは、Internet Explorer でサポートされません。</p>