blob: 06d725d4ee887828f5c0dee924a2dffcf92a32d7 (
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: SVGAElement
slug: Web/API/SVGAElement
tags:
- API
- Reference
- SVG
- SVG DOM
- WebAPI
translation_of: Web/API/SVGAElement
---
<h2 id="SVG_a_DOM_interface">SVG a DOM interface</h2>
<p>L'interface <code>SVGAElement </code>fournit un accès aux propriétés des éléments {{ SVGElement("a") }} ainsi qu'aux méthodes pour les manipuler.</p>
<h3 id="Interface_overview">Interface overview</h3>
<table class="standard-table">
<tbody>
<tr>
<th scope="row">Egalement implémenté</th>
<td>{{ domxref("SVGElement") }}, {{ domxref("SVGURIReference") }}, {{ domxref("SVGTests") }}, {{ domxref("SVGLangSpace") }}, {{ domxref("SVGExternalResourcesRequired") }}, {{ domxref("SVGStylable") }}, {{ domxref("SVGTransformable") }}</td>
</tr>
<tr>
<th scope="row">Methodes</th>
<td><em>Aucune</em></td>
</tr>
<tr>
<th scope="row">Propriétés</th>
<td>
<ul>
<li>lectureseule{{ domxref("SVGAnimatedString") }} <code>cible</code></li>
</ul>
</td>
</tr>
<tr>
<th scope="row">Document Normative</th>
<td><a class="external" href="http://www.w3.org/TR/SVG11/linking.html#InterfaceSVGAElement" title="http://www.w3.org/TR/SVG11/linking.html#InterfaceSVGAElement">SVG 1.1 (2nd Edition)</a></td>
</tr>
</tbody>
</table>
<h2 id="Propriétés">Propriétés</h2>
<table class="standard-table">
<thead>
<tr>
<th>Nom</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>cible</code></td>
<td>{{ domxref("SVGAnimatedString") }}</td>
<td>Correspond à attribuer {{ SVGAttr("cible") }} sur l'élément {{ SVGElement("a") }} donné.</td>
</tr>
</tbody>
</table>
<h2 id="Methodes">Methodes</h2>
<p>L'interface <code>SVGAElement</code> ne fournit aucune méthode spécifique.</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilité navigateurs</h2>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Caractéristiques</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Support basique</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>9.0</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Caractéristiques</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Support basique</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="A_voir_aussi">A voir aussi</h2>
<ul>
<li>{{ SVGElement("a") }} SVG Element</li>
</ul>
|