aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onclick/index.html
blob: 6e4ec8e02fd6ea027c47621bbddcd8c2516efc89 (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
---
title: GlobalEventHandlers.onclick
slug: Web/API/GlobalEventHandlers/onclick
tags:
- API
- Event Handler
- GlobalEventHandlers
- HTML DOM
- Property
- Reference
browser-compat: api.GlobalEventHandlers.onclick
translation_of: Web/API/GlobalEventHandlers/onclick
---
<p>{{ ApiRef("HTML DOM") }}</p>

<p><code><strong>onclick</strong></code> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、指定された要素の {{domxref("Element/click_event", "click")}} イベントを処理するための<a href="/ja/docs/Web/Events/Event_handlers">イベントハンドラー</a>です。</p>

<p><code>click</code> イベントは、ユーザーが要素をクリックしたときに発行されます。 {{domxref("Element/mousedown_event", "mousedown")}} イベントと {{domxref("Element/mouseup_event", "mouseup")}} イベントの後に、この順番で発行されます。</p>

<div class="note"><strong>注:</strong> <code>click</code> イベントを使用してアクションを起動するときは、マウスやタッチ画面を使用していないユーザーが同じアクションを使用できるように、 {{domxref("Element/keydown_event", "keydown")}} イベントにも同じアクションを追加することを検討してください。</div>

<h2 id="Syntax">構文</h2>

<pre class="brush: js"><var>target</var>.onclick = <var>functionRef</var>;
</pre>

<h3 id="Value"></h3>

<p><code><var>functionRef</var></code> は、関数名または<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。この関数は、{{domxref("MouseEvent")}} オブジェクトを唯一の引数として受け取ります。関数内では、 {{jsxref("Operators/this", "this")}} は <code>onclick</code> が結びつけられたオブジェクトになります (<code>event.currentTarget</code> にも一致します)。</p>

<p>一度に 1 つのオブジェクトに割り当てることができる <code>onclick</code> ハンドラーは 1 つだけです。より柔軟性のある {{domxref("EventTarget.addEventListener()")}} メソッドを使用することをお勧めします。</p>

<h2 id="Examples"></h2>

<h3 id="Detecting_clicks">クリックの検出</h3>

<p>この例では、要素の上でクリックが行われたときに要素の色を単純に変更します。</p>

<h4 id="HTML">HTML</h4>

<pre class="brush:html">&lt;div id="demo"&gt;ここをクリック&lt;/div&gt;</pre>

<h4 id="JavaScript">JavaScript</h4>

<pre class="brush: js">document.getElementById('demo').onclick = function changeContent() {

   document.getElementById('demo').textContent = "Help me";
   document.getElementById('demo').style = "Color: red";

}</pre>

<h4 id="Result">結果</h4>

<p>{{EmbedLiveSample("Detecting_clicks")}}</p>

<h3 id="Getting_the_coordinates_of_clicks">クリックの座標の取得</h3>

<p>この例では、最も新しくマウスボタンのクリックが行われた場所の座標を表示します。</p>

<h4 id="HTML_2">HTML</h4>

<pre class="brush:html">&lt;p&gt;この例のどこかをクリックしてください。&lt;/p&gt;
&lt;p id="log"&gt;&lt;/p&gt;</pre>

<h4 id="JavaScript_2">JavaScript</h4>

<pre class="brush: js">let log = document.getElementById('log');

document.onclick = inputChange;

function inputChange(e) {
  log.textContent = `位置: (${e.clientX}, ${e.clientY})`;
}</pre>

<h4 id="Result_2">結果</h4>

<p>{{EmbedLiveSample("Getting_the_coordinates_of_clicks")}}</p>

<h2 id="Specification">仕様書</h2>

{{Specifications}}

<h2 id="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat}}</p>

<h2 id="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>