aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onabort/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/onabort/index.html')
-rw-r--r--files/ja/web/api/globaleventhandlers/onabort/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/onabort/index.html b/files/ja/web/api/globaleventhandlers/onabort/index.html
new file mode 100644
index 0000000000..3f7ea11c4e
--- /dev/null
+++ b/files/ja/web/api/globaleventhandlers/onabort/index.html
@@ -0,0 +1,30 @@
+---
+title: window.onabort
+slug: Web/API/GlobalEventHandlers/onabort
+tags:
+ - DOM
+ - DOM_0
+ - Gecko
+ - Gecko DOM Reference
+ - NeedsUpdate
+ - Window
+ - 要更新
+ - 要確認
+translation_of: Web/API/GlobalEventHandlers/onabort
+---
+<div>
+ {{ApiRef}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+<p>ウィンドウに中断イベントを送ったときのイベントハンドラです。</p>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox">window.onabort = <var>funcRef</var>
+</pre>
+<ul>
+ <li><var>funcRef</var> : 関数への参照</li>
+</ul>
+<h2 id="Example" name="Example">例</h2>
+<pre class="brush:js">window.onabort = function() {
+ alert("Load aborted.");
+}</pre>
+<h2 id="Specification" name="Specification">仕様</h2>
+<p>{{DOM0}} <span class="comment">これは実際には、このハンドラが発生したときの説明になっていない。</span></p>