aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/onclick
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
commit6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch)
tree890e3e27131be010d82ef957fa68db495006cb0e /files/ja/web/api/window/onclick
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip
unslug ja: move
Diffstat (limited to 'files/ja/web/api/window/onclick')
-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>