blob: b934dfb4cc4bbbe0bcaf3b3cebe1e47eadafeeb5 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
---
title: GlobalEventHandlers.onclick
slug: Web/API/GlobalEventHandlers/onclick
tags:
- API
- Event Handler
- GlobalEventHandlers
- HTML DOM
- Property
- Reference
translation_of: Web/API/GlobalEventHandlers/onclick
---
<p>{{ ApiRef("HTML DOM") }}</p>
<p><code><strong>onclick</strong></code> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、所与の要素の {{domxref("Element/click_event", "click")}} イベントを処理するためのイベントハンドラー ({{event("Event_handlers", "event handler")}}) です。</p>
<p><code>click</code> イベントは、ユーザーが要素をクリックしたときに発生します。 {{domxref("Element/mousedown_event", "mousedown")}} イベントと {{domxref("Element/mouseup_event", "mouseup")}} イベントの後に、この順番で発行されます。</p>
<div class="note"><strong>注</strong>: <code>click</code> イベントを使用してアクションを起動するときは、マウスやタッチスクリーンを使用していないユーザーが同じアクションを使用できるように、 {{event("keydown")}} イベントにも同じアクションを追加することを検討してください。</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>target</var>.onclick = <var>functionRef</var>;
</pre>
<h3 id="Value" name="Value">値</h3>
<p><code><var>functionRef</var></code> は、関数名または<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。 この関数は、{{domxref("MouseEvent")}} オブジェクトを唯一の引数として受け取ります。関数内では、 {{jsxref("Operators/this", "this")}} はイベントが発行された要素になります。</p>
<p>一度に1つのオブジェクトに割り当てることができる <code>onclick</code> ハンドラは1つだけです。より柔軟性のある {{domxref("EventTarget.addEventListener()")}} メソッドを使用することをお勧めします。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Detecting_clicks" name="Detecting_clicks">クリックの検出</h3>
<p>この例では、要素の上でクリックが行われたときに要素の色を単純に変更します。</p>
<h4 id="HTML">HTML</h4>
<pre class="brush:html notranslate"><div id="demo">ここをクリック</div></pre>
<h4 id="JavaScript">JavaScript</h4>
<pre class="brush: js notranslate">document.getElementById('demo').onclick = function changeContent() {
document.getElementById('demo').innerHTML = "Help me";
document.getElementById('demo').style = "Color: red";
}</pre>
<h4 id="Result" name="Result">結果</h4>
<p>{{EmbedLiveSample("Detecting_clicks")}}</p>
<h3 id="Getting_the_coordinates_of_clicks" name="Getting_the_coordinates_of_clicks">クリックの座標の取得</h3>
<p>この例では、最も新しくマウスボタンのクリックが行われた場所の座標を表示します。</p>
<h4 id="HTML_2">HTML</h4>
<pre class="brush:html notranslate"><p>この例のどこかをクリックしてください。</p>
<p id="log"></p></pre>
<h4 id="JavaScript_2">JavaScript</h4>
<pre class="brush: js notranslate">let log = document.getElementById('log');
document.onclick = inputChange;
function inputChange(e) {
log.textContent = `位置: (${e.clientX}, ${e.clientY})`;
}</pre>
<h4 id="Result_2" name="Result_2">結果</h4>
<p>{{EmbedLiveSample("Getting_the_coordinates_of_clicks")}}</p>
<h2 id="Specification" name="Specification">仕様書</h2>
<table class="spectable standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onclick','onclick')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div>
<p>{{Compat("api.GlobalEventHandlers.onclick")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Element/click_event", "click")}} イベント</li>
<li>関連イベントハンドラー
<ul>
<li>{{domxref("GlobalEventHandlers.onauxclick")}}</li>
<li>{{domxref("GlobalEventHandlers.ondblclick")}}</li>
</ul>
</li>
</ul>
|