blob: 5e78df7bfe1a712a8e263d33de20b22d97d26e78 (
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.onmouseenter
slug: Web/API/GlobalEventHandlers/onmouseenter
tags:
- API
- Event Handler
- GlobalEventHandlers
- Property
- Reference
translation_of: Web/API/GlobalEventHandlers/onmouseenter
---
<div>{{ ApiRef("HTML DOM") }}</div>
<p><strong><code>onmouseenter</code></strong> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("mouseenter")}} イベントを処理する{{domxref("EventHandler" ,"イベントハンドラー")}}です。</p>
<p><code>mouseenter</code> イベントは、ポインティングデバイス(通常はマウス)がリスナーが接続されている要素上に移動したときに発生します。</p>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate"><em><var>element</var></em>.onmouseenter = <em>handlerFunction</em>;
var <em>handlerFunction</em> = <em><var>element</var></em>.onmouseenter;
</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-onmouseenter','onmouseenter')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p>{{Compat("api.GlobalEventHandlers.onmouseenter")}}</p>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>{{event("mouseenter")}}</li>
<li><a href="/docs/Web/Guide/Events/Event_handlers">DOM onevent ハンドラー</a></li>
</ul>
|