blob: 437744245b2fcfc61d86cb981fd7e9847457ab29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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="/ja/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="/ja/docs/Web/Guide/Events/Event_handlers">DOM onevent ハンドラー</a></li>
</ul>
|