aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onmouseleave
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/globaleventhandlers/onmouseleave
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/onmouseleave')
-rw-r--r--files/ja/web/api/globaleventhandlers/onmouseleave/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/onmouseleave/index.html b/files/ja/web/api/globaleventhandlers/onmouseleave/index.html
new file mode 100644
index 0000000000..b6065b7161
--- /dev/null
+++ b/files/ja/web/api/globaleventhandlers/onmouseleave/index.html
@@ -0,0 +1,54 @@
+---
+title: GlobalEventHandlers.onmouseleave
+slug: Web/API/GlobalEventHandlers/onmouseleave
+tags:
+ - API
+ - Event Handler
+ - GlobalEventHandlers
+ - Property
+ - Reference
+translation_of: Web/API/GlobalEventHandlers/onmouseleave
+---
+<div>{{ ApiRef("HTML DOM") }}</div>
+
+<p><strong><code>onmouseleave</code></strong> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("mouseleave")}} イベントを処理する{{domxref("EventHandler" ,"イベントハンドラー")}}です。</p>
+
+<p><code>mouseleave</code> イベントは、ポインティングデバイス(通常はマウス)がリスナーが接続されている要素から外れたときに発生します。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox notranslate"><em><var>element</var></em>.onmouseleave = <em>handlerFunction</em>;
+var <em>handlerFunction</em> = <em><var>element</var></em>.onmouseleave;
+</pre>
+
+<p><code>handlerFunction</code> は、イベントのハンドラを指定する <code>null</code> または <a href="/docs/Web/JavaScript/Reference/Functions">JavaScript 関数 </a> です。</p>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="spectable standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML WHATWG','#handler-onmouseleave','onmouseleave')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+
+
+<p>{{Compat("api.GlobalEventHandlers.onmouseleave")}}</p>
+
+<h2 id="関連情報">関連情報</h2>
+
+<ul>
+ <li>{{event("mouseleave")}}</li>
+ <li><a href="/docs/Web/Guide/Events/Event_handlers">DOM onevent ハンドラー</a></li>
+</ul>