aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/onmousedown/index.html
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/onmousedown/index.html
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/onmousedown/index.html')
-rw-r--r--files/ja/web/api/window/onmousedown/index.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/files/ja/web/api/window/onmousedown/index.html b/files/ja/web/api/window/onmousedown/index.html
deleted file mode 100644
index b5f947f8be..0000000000
--- a/files/ja/web/api/window/onmousedown/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: window.onmousedown
-slug: Web/API/Window/onmousedown
-tags:
- - DOM
- - Gecko
- - Gecko DOM Reference
- - Window
-translation_of: Web/API/GlobalEventHandlers/onmousedown
-translation_of_original: Web/API/Window/onmousedown
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>{{domxref("window")}} 上での mousedown イベントに対応するイベントハンドラです。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox">window.onmousedown = <em>funcRef</em>;
-</pre>
-<ul>
- <li><code>funcRef</code> : 関数への参照、または関数式</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:js">window.onmousedown = doFunc;
-</pre>
-<pre class="brush:html">&lt;!DOCTYPE html&gt;
-&lt;html lang="ja"&gt;
-&lt;head&gt;
-&lt;meta charset="UTF-8" /&gt;
-&lt;title&gt;onmousedown のテスト&lt;/title&gt;
-
-&lt;script&gt;
-window.onmousedown = mousedown;
-
-function mousedown() {
- alert("mousedown イベントが発生しました。");
-}
-&lt;/script&gt;
-
-&lt;/head&gt;
-&lt;body&gt;
-&lt;p&gt;ページ上でのマウスクリック(右クリック、左クリック、中ボタン)で mousedown イベントが発生します。&lt;/p&gt;
-&lt;/body&gt;
-&lt;/html&gt;
-</pre>
-<h2 id="Notes" name="Notes">注記</h2>
-<p>ページ上の任意の場所でマウスボタンをクリックすると mousedown イベントが発生し、アラートを表示する関数が呼び出されます。</p>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>標準仕様書には含まれていません。</p>