blob: 1920143e022e8bcbbb32d31ab3561e51b155feeb (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
---
title: HTMLElement.click()
slug: Web/API/HTMLElement/click
tags:
- API
- HTML DOM
- HTMLElement
- Method
- Reference
translation_of: Web/API/HTMLElement/click
---
<div>
<div>{{ APIRef("HTML DOM") }}</div>
</div>
<p><span class="seoSummary"><code><strong>HTMLElement.click()</strong></code> メソッドは、要素のマウスクリックをシミュレートします。</span></p>
<p>サポートしている要素({{HTMLElement("input")}} など)で <code>click()</code> を使用すると、要素の <code>click</code> イベントが発生します。 このイベントは、ドキュメントツリー (またはイベントチェーン) の上位の要素にバブルアップし、<code>click</code> イベントを発生させます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><em>element</em>.click()</pre>
<h2 id="Example" name="Example">例</h2>
<p>チェックボックスの上にマウスポインタを移動させたときのマウスクリックをシミュレートします。</p>
<h3 id="HTML" name="HTML">HTML</h3>
<pre class="brush: html notranslate"><form>
<input type="checkbox" id="myCheck" onmouseover="myFunction()" onclick="alert('click イベントが発生しました')">
</form></pre>
<h3 id="JavaScript" name="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">// マウスオーバーで、myFunction を実行します
function myFunction() {
document.getElementById("myCheck").click();
}
</pre>
<h2 id="Specification" name="Specification">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">ステータス</th>
<th scope="col">コメント</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'interaction.html#dom-click')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('DOM2 HTML', 'html.html#ID-2651361')}}</td>
<td>{{Spec2('DOM2 HTML')}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>
<p>{{Compat("api.HTMLElement.click")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>関連イベントハンドラ
<ul>
<li>{{domxref("GlobalEventHandlers.onclick")}}</li>
<li>{{domxref("GlobalEventHandlers.ondblclick")}}</li>
<li>{{domxref("GlobalEventHandlers.onauxclick")}}</li>
</ul>
</li>
</ul>
<div id="eJOY__extension_root"></div>
|