blob: 88138ee018b3aa4bba5259a9120cea8a09e74329 (
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
|
---
title: <script>
slug: Web/SVG/Element/script
tags:
- Element
- Reference
- SVG
translation_of: Web/SVG/Element/script
---
<p>SVG <code>script</code> 要素は、HTML の <a href="/ja/HTML/Element/Script"><code>script</code></a> 要素と同じく、 スクリプト(例えば ECMAScript)を設置するための場所です。</p>
<p>すべての <code>script</code> 要素内で定義されたすべての関数は、現在のドキュメント全体でグローバルスコープを持っています。</p>
<h2 id="利用可能な場所">利用可能な場所</h2>
<p>{{svginfo}}</p>
<h2 id="例">例</h2>
<p>次のコードスニペットは、SVG の <code>script</code> タグの使用方法を示します。このコードでは、SVG {{SVGElement("circle")}} 要素の半径を変更するために JavaScript を使用します。</p>
<pre class="brush: html notranslate"><svg width="100%" height="100%" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<script type="text/javascript">
// <![CDATA[
function change(evt) {
var target = evt.target;
var radius = target.getAttribute("r");
if (radius == 15) {
radius = 45;
} else {
radius = 15;
}
target.setAttribute("r",radius);
}
// ]]>
</script>
<circle cx="50" cy="50" r="45" fill="green"
onclick="change(evt)" />
</svg>
</pre>
<p>結果:</p>
<p>{{EmbedLiveSample("Example",150,165)}}</p>
<h2 id="属性">属性</h2>
<h3 id="グローバル属性">グローバル属性</h3>
<ul>
<li><a href="/ja/SVG/Attribute#Core">コア属性</a> »</li>
<li><a href="/ja/SVG/Attribute#XLink">Xlink 属性</a> »</li>
<li>{{SVGAttr("externalResourcesRequired")}}</li>
</ul>
<h3 id="専用属性">専用属性</h3>
<ul>
<li>{{SVGAttr("type")}}</li>
<li>{{SVGAttr("xlink:href")}}</li>
</ul>
<h2 id="DOM_インターフェイス">DOM インターフェイス</h2>
<p>この要素は <code><a href="/ja/DOM/SVGScriptElement">SVGScriptElement</a></code> インターフェイスを実装します。</p>
<h2 id="仕様">仕様</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#ScriptElement', '<script>')}}</td>
<td>{{Spec2('SVG2')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('SVG1.1', 'script.html#ScriptElement', '<script>')}}</td>
<td>{{Spec2('SVG1.1')}}</td>
<td>初期の定義</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザー互換性">ブラウザー互換性</h2>
<p>{{Compat("svg.elements.script")}}</p>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>HTML の <a href="/ja/HTML/Element/Script"><code>script</code> 要素</a></li>
</ul>
<p>{{SVGRef}}</p>
|