aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/onclick/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/window/onclick/index.html')
-rw-r--r--files/ja/web/api/window/onclick/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/files/ja/web/api/window/onclick/index.html b/files/ja/web/api/window/onclick/index.html
deleted file mode 100644
index ac36968fa6..0000000000
--- a/files/ja/web/api/window/onclick/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title: window.onclick
-slug: Web/API/Window/onclick
-tags:
- - DOM
- - Gecko
- - Gecko DOM Reference
- - Window
-translation_of: Web/API/GlobalEventHandlers/onclick
-translation_of_original: Web/API/Window/onclick
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>カーソルがウィンドウ内にある時にユーザがマウスボタンをクリックした場合に呼び出されます。このイベントはどのマウスボタンを押下した場合でも発生します。イベントが発生した地点はイベントのプロパティから取得する事が出来ます。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox">window.onclick =<i>funcRef</i>;
-</pre>
-<ul>
- <li><code>funcRef</code>: 関数への参照</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:html">&lt;!DOCTYPE html&gt;
-&lt;html&gt;
-&lt;head&gt;
-&lt;meta charset="UTF-8" /&gt;
-&lt;title&gt;onclick のテスト&lt;/title&gt;
-&lt;script&gt;
-function clickPage () {
- alert("click event detected!");
-}
-
-window.onclick = clickPage;
-&lt;/script&gt;
-&lt;/head&gt;
-
-&lt;body&gt;
-
-&lt;p&gt;このページ上でマウスボタンをクリックしてみてください。&lt;/p&gt;
-
-&lt;/body&gt;
-&lt;/html&gt;</pre>
-<p>ユーザが Window 内をクリックすると <code>click</code> イベントが発生します。</p>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>どの仕様書にも含まれていません。</p>