diff options
Diffstat (limited to 'files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html')
-rw-r--r-- | files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html b/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html new file mode 100644 index 0000000000..f7133126a9 --- /dev/null +++ b/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html @@ -0,0 +1,57 @@ +--- +title: window.onmouseup +slug: Web/API/Window/onmouseup +tags: + - DOM + - Gecko + - Gecko DOM Reference + - Window +translation_of: Web/API/GlobalEventHandlers/onmouseup +translation_of_original: Web/API/Window/onmouseup +--- +<div> + {{ApiRef}}</div> +<h2 id="Summary" name="Summary">概要</h2> +<p>{{domxref("window")}} 上の <code>mouseup</code> イベントに対応するイベントハンドラです。</p> +<h2 id="Syntax" name="Syntax">構文</h2> +<pre class="syntaxbox">window.onmouseup = <var>funcRef</var>; +</pre> +<ul> + <li><code>funcRef</code> : 関数への参照、または関数式</li> +</ul> +<h2 id="Example" name="Example">例</h2> +<pre class="brush:js">function doFunc() { + alert("こんにちは!"); +} + +window.onmouseup = doFunc; +</pre> +<pre class="brush:js">window.onmouseup = function() { + alert("こんばんは!"); +}; +</pre> +<pre class="brush:html"><!DOCTYPE html> +<html lang="ja"> +<head> +<meta charset="UTF-8" /> +<title>onmouseup のテスト</title> + +<script> +window.onmouseup = mouseup; + +function mouseup() { + alert("mouseup イベントを検出!"); +} +</script> + +</head> +<body> +<p>ページ上をマウスのボタンでクリックし、数秒押し続け、ボタンを放します。 +マウスのボタンを放すことで、 mouseup イベントが発生します。</p> +</body> +</html> +</pre> +<h2 id="Notes" name="Notes">注記</h2> +<p><code>mouseup</code> イベントは、ドキュメント内のどこででも、ユーザがマウスの左ボタンを放すことによって発生します。</p> +<h2 id="Specification" name="Specification">仕様</h2> +<p>標準仕様書には含まれていません。</p> |