aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/onclick/index.html
blob: 946bd5680e75a5c64765db98464af738203a1a1e (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
---
title: onclick
slug: Web/SVG/Attribute/onclick
tags:
  - SVG
  - SVG Attribute
  - events
  - イベント
translation_of: Web/SVG/Attribute/onclick
---
<div>{{SVGRef}}</div>

<p><code><strong>onclick</strong></code> 属性は、要素がクリックされたときに実行するスクリプトを指定します。</p>

<p>37個の要素がこの属性を使用します。 {{SVGElement("a")}}, {{SVGElement("altGlyph")}}, {{SVGElement("animate")}}, {{SVGElement("animateMotion")}}, {{SVGElement("animateTransform")}},<br>
 {{SVGElement("circle")}}, {{SVGElement("defs")}}, {{SVGElement("desc")}}, {{SVGElement("ellipse")}}, {{SVGElement("foreignObject")}}, {{SVGElement("g")}},<br>
 {{SVGElement("image")}}, {{SVGElement("line")}}, {{SVGElement("linearGradient")}}, {{SVGElement("marker")}}, {{SVGElement("metadata")}}, {{SVGElement("mpath")}},<br>
 {{SVGElement("path")}}, {{SVGElement("pattern")}}, {{SVGElement("polygon")}}, {{SVGElement("polyline")}}, {{SVGElement("radialGradient")}}, {{SVGElement("rect")}},<br>
 {{SVGElement("script")}}, {{SVGElement("set")}}, {{SVGElement("stop")}}, {{SVGElement("style")}}, {{SVGElement("svg")}}, {{SVGElement("switch")}},<br>
 {{SVGElement("symbol")}}, {{SVGElement("text")}}, {{SVGElement("textPath")}}, {{SVGElement("title")}}, {{SVGElement("tref")}}, {{SVGElement("tspan")}},<br>
 {{SVGElement("use")}}, {{SVGElement("view")}}</p>

<div id="topExample">
<div class="hidden">
<pre class="brush: css">html, body, svg {
  height: 100%;
  margin: 0;
}</pre>
</div>

<pre class="brush: html; highlight[2]">&lt;svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"&gt;
  &lt;circle cx="100" cy="100" r="100" onclick="alert('You have clicked the circle.')" /&gt;
&lt;/svg&gt;</pre>

<p>{{EmbedLiveSample("topExample", "220", "220")}}</p>
</div>

<h2 id="Usage_notes" name="Usage_notes">使用上のメモ</h2>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row"></th>
   <td><code><a href="/ja/docs/Web/SVG/Content_type#Anything">&lt;anything&gt;</a></code></td>
  </tr>
  <tr>
   <th scope="row">既定値</th>
   <td><em>なし</em></td>
  </tr>
  <tr>
   <th scope="row">アニメーション</th>
   <td>不可</td>
  </tr>
 </tbody>
</table>

<h2 id="Specifications" name="Specifications">仕様書</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("SVG2", "interact.html#EventAttributes", "onclick")}}</td>
   <td>{{Spec2("SVG2")}}</td>
   <td>変更なし</td>
  </tr>
  <tr>
   <td>{{SpecName("SVG1.1", "script.html#OnClickEventAttribute", "onclick")}}</td>
   <td>{{Spec2("SVG1.1")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

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

<p>{{Compat("svg.attributes.events.global.onclick")}}</p>