blob: 4fc15aed1a1abda83d4b0d4ca2e4f850704d10e6 (
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
114
115
|
---
title: Element.prefix
slug: Web/API/Element/prefix
tags:
- API
- Compatibilidad de los Navegadores en Móviles
- Compatibilidad de los navegadores
- DOM
- Propiedad
- Referencia
translation_of: Web/API/Element/prefix
---
<div>{{APIRef("DOM")}}</div>
<p>La propiedad <code><strong>Element.prefix</strong></code> unicamente de lectura devuelve el namespace prefix de el elemento especificado, o<code> null si no hay especificado </code>prefix .</p>
<div class="note">
<p>Antes de DOM4 esta API fué definida dentro de la interfaz {{domxref("Node")}}.</p>
</div>
<h2 id="Síntasix">Síntasix</h2>
<pre class="syntaxbox"><var>string</var> = <var>element</var>.prefix
</pre>
<h2 id="Ejemplos">Ejemplos</h2>
<p><span class="short_text" id="result_box" lang="es"><span>Los siguientes registros</span> <span>"</span><span>x</span><span>"</span> <span>en la consola.</span></span></p>
<pre class="brush:xml"><x:div onclick="console.log(this.prefix)"/>
</pre>
<h2 id="Notas">Notas</h2>
<p> Solo funcionará cuando se utiliza un analizador de namespace, ej. Cuando un documento es servido con un tipo XML MIME . No funcionará para documentos HTML.</p>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentario</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("DOM4", "#dom-element-prefix", "Element.prefix")}}</td>
<td>{{Spec2("DOM4")}}</td>
<td>Definición inicial</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_en_los_Navegadores">Compatibilidad en los Navegadores</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Función</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Soporte Básico</td>
<td>46.0<sup>[1]</sup></td>
<td>{{CompatGeckoDesktop("48.0")}}<sup>[1]</sup></td>
<td>{{CompatUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Función</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Soporte Básico</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("48.0")}}<sup>[1]</sup></td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<p>[1] Esta API estaba previamente disponible en {{domxref("Node")}} API.</p>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li>{{domxref("Element.namespaceURI")}}</li>
<li>{{domxref("Element.localName")}}</li>
<li>{{domxref("Attr.prefix")}}</li>
<li>{{domxref("Node.prefix")}}</li>
</ul>
|