diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-23 15:56:25 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-23 15:56:25 +0100 |
commit | 05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f (patch) | |
tree | 3a996b21e1eb1ed852ab792b9752648783a87a75 /files/es/web/api/element | |
parent | 10701ffef1cb57f06970990b9b7086ea7f24a019 (diff) | |
download | translated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.tar.gz translated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.tar.bz2 translated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.zip |
sync: move
Diffstat (limited to 'files/es/web/api/element')
-rw-r--r-- | files/es/web/api/element/nextelementsibling/index.html | 113 | ||||
-rw-r--r-- | files/es/web/api/element/previouselementsibling/index.html | 160 |
2 files changed, 273 insertions, 0 deletions
diff --git a/files/es/web/api/element/nextelementsibling/index.html b/files/es/web/api/element/nextelementsibling/index.html new file mode 100644 index 0000000000..68395bc2b3 --- /dev/null +++ b/files/es/web/api/element/nextelementsibling/index.html @@ -0,0 +1,113 @@ +--- +title: NonDocumentTypeChildNode.nextElementSibling +slug: Web/API/NonDocumentTypeChildNode/nextElementSibling +tags: + - API + - DOM + - NonDocumentTypeChildNode + - Propiedad +translation_of: Web/API/NonDocumentTypeChildNode/nextElementSibling +--- +<div>{{APIRef("DOM")}}</div> + +<p>La propiedad de sólo lectura <code><strong>NonDocumentTypeChildNode.nextElementSibling</strong></code> devuelve el elemento inmediatamente posterior al especificado, dentro de la lista de elementos hijos de su padre, o bien <code>null</code> si el elemento especificado es el último en dicha lista.</p> + +<h2 id="Sintaxis">Sintaxis</h2> + +<pre class="syntaxbox">var <em>nextNode</em> = elementNodeReference.nextElementSibling; </pre> + +<h2 id="Ejemplo">Ejemplo</h2> + +<pre class="brush: html"><div id="div-01">Here is div-01</div> +<div id="div-02">Here is div-02</div> + +<script type="text/javascript"> + var el = document.getElementById('div-01').nextElementSibling; + console.log('Siblings of div-01:'); + while (el) { + console.log(el.nodeName); + el = el.nextElementSibling; + } +</script> +</pre> + +<p>Este ejemplo muestra en la consola lo siguiente cuando se carga:</p> + +<pre>Siblings of div-01: +DIV +SCRIPT</pre> + +<h2 id="Polyfill_para_Internet_Explorer_8">Polyfill para Internet Explorer 8</h2> + +<p>Esta propiedad no está soportada con anterioridad a IE9, así que el siguiente fragmento de código puede utilizarse para añadir el soporte a IE8:</p> + +<pre class="brush: js">// Source: https://github.com/Alhadis/Snippets/blob/master/js/polyfills/IE8-child-elements.js +if(!("nextElementSibling" in document.documentElement)){ + Object.defineProperty(Element.prototype, "nextElementSibling", { + get: function(){ + var e = this.nextSibling; + while(e && 1 !== e.nodeType) + e = e.nextSibling; + return e; + } + }); +}</pre> + +<h2 id="Polyfill_para_Internet_Explorer_9_y_Safari">Polyfill para Internet Explorer 9+ y Safari</h2> + +<pre class="brush: js">// Source: https://github.com/jserz/js_piece/blob/master/DOM/NonDocumentTypeChildNode/nextElementSibling/nextElementSibling.md +(function (arr) { + arr.forEach(function (item) { + if (item.hasOwnProperty('nextElementSibling')) { + return; + } + Object.defineProperty(item, 'nextElementSibling', { + configurable: true, + enumerable: true, + get: function () { + var el = this; + while (el = el.nextSibling) { + if (el.nodeType === 1) { + return el; + } + } + return null; + }, + set: undefined + }); + }); +})([Element.prototype, CharacterData.prototype]);</pre> + +<h2 id="Especificaciones">Especificaciones</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificación</th> + <th scope="col">Estado</th> + <th scope="col">Observaciones</th> + </tr> + <tr> + <td>{{SpecName('DOM WHATWG', '#dom-nondocumenttypechildnode-nextelementsibling', 'ChildNodenextElementSibling')}}</td> + <td>{{Spec2('DOM WHATWG')}}</td> + <td>Se dividió la interfaz <code>ElementTraversal</code> en {{domxref("ChildNode")}}, {{domxref("ParentNode")}}, y {{domxref("NonDocumentTypeChildNode")}}. Este método queda ahora definido en la primera.<br> + Los interfaces {{domxref("Element")}} y {{domxref("CharacterData")}} implementaron la nueva interfaz.</td> + </tr> + <tr> + <td>{{SpecName('Element Traversal', '#attribute-nextElementSibling', 'ElementTraversal.nextElementSibling')}}</td> + <td>{{Spec2('Element Traversal')}}</td> + <td>Añadió su definición inicial a la interfaz pura <code>ElementTraversal</code> y su uso en {{domxref("Element")}}.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2> + +<p>{{Compat("api.NonDocumentTypeChildNode.nextElementSibling")}}</p> + +<h2 id="Ver_también">Ver también</h2> + +<ul> + <li>La interfaz pura {{domxref("ChildNode")}}.</li> + <li>Tipos de objetos que implementan esta interfaz pura: {{domxref("CharacterData")}}, {{domxref("Element")}}, y {{domxref("DocumentType")}}.</li> +</ul> diff --git a/files/es/web/api/element/previouselementsibling/index.html b/files/es/web/api/element/previouselementsibling/index.html new file mode 100644 index 0000000000..13867e8fe4 --- /dev/null +++ b/files/es/web/api/element/previouselementsibling/index.html @@ -0,0 +1,160 @@ +--- +title: NonDocumentTypeChildNode.previousElementSibling +slug: Web/API/NonDocumentTypeChildNode/previousElementSibling +translation_of: Web/API/NonDocumentTypeChildNode/previousElementSibling +--- +<div> +<div>{{APIRef("DOM")}}</div> +</div> + +<p>La propiedad de sólo lectura <code><strong>NonDocumentTypeChildNode.previousElementSibling</strong></code> retorna el {{domxref("Element")}} predecesor inmediato al especificado dentro de la lista de hijos de su padre, o bien <code>null</code> si el elemento especificado es el primero de dicha lista.</p> + +<h2 id="Syntax" name="Syntax">Sintaxis</h2> + +<pre class="syntaxbox"><var>prevNode</var> = elementNodeReference.previousElementSibling; +</pre> + +<h2 id="Example" name="Example">Ejemplo</h2> + +<pre class="brush: html"><div id="div-01">Aquí está div-01</div> +<div id="div-02">Aquí está div-02</div> +<li>Esto es un elemento de lista</li> +<li>Esto es otro elemento de lista</li> +<div id="div-03">Aquí esta div-03</div> + +<script> + var el = document.getElementById('div-03').previousElementSibling; + document.write('<p>Hermanos de div-03</p><ol>'); + while (el) { + document.write('<li>' + el.nodeName + '</li>'); + el = el.previousElementSibling; + } + document.write('</ol>'); +</script> +</pre> + +<p>Este ejemplo muestra lo siguiente en la página cuando carga:</p> + +<pre>Hermanos de div-03 + + 1. LI + 2. LI + 3. DIV + 4. DIV +</pre> + +<h2 id="Polyfill_para_Internet_Explorer_8">Polyfill para Internet Explorer 8</h2> + +<p>Esta propiedad no está soportada con anterioridad a IE9, así que puede utilizarse el siguiente fragmento para añadri el soporte a IE8:</p> + +<pre class="brush: js">// Source: https://github.com/Alhadis/Snippets/blob/master/js/polyfills/IE8-child-elements.js +if(!("previousElementSibling" in document.documentElement)){ + Object.defineProperty(Element.prototype, "previousElementSibling", { + get: function(){ + var e = this.previousSibling; + while(e && 1 !== e.nodeType) + e = e.previousSibling; + return e; + } + }); +}</pre> + +<h2 id="Specification" name="Specification">Especificaciones</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificación</th> + <th scope="col">Estado</th> + <th scope="col">Observaciones</th> + </tr> + <tr> + <td>{{SpecName('DOM WHATWG', '#dom-nondocumenttypechildnode-previouselementsibling', 'NonDocumentTypeChildNode.previousElementSibling')}}</td> + <td>{{Spec2('DOM WHATWG')}}</td> + <td>Dividió el interfaz <code>ElementTraversal</code> en {{domxref("ChildNode")}}, {{domxref("ParentNode")}}, y {{domxref("NonDocumentTypeChildNode")}}. Este método queda ahora definida en el primero.<br> + Los interfaces {{domxref("Element")}} y {{domxref("CharacterData")}} implementaron la nueva interfaz.</td> + </tr> + <tr> + <td>{{SpecName('Element Traversal', '#attribute-previousElementSibling', 'ElementTraversal.previousElementSibling')}}</td> + <td>{{Spec2('Element Traversal')}}</td> + <td>Añadida su definición inicial al interfaz puro <code>ElementTraversal</code> y lo usa en {{domxref("Element")}}.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2> + +<div>{{CompatibilityTable}}</div> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Prestació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 (en {{domxref("Element")}})</td> + <td>4</td> + <td>{{CompatGeckoDesktop("1.9.1")}}</td> + <td>9</td> + <td>9.8</td> + <td>4</td> + </tr> + <tr> + <td>Soporte en {{domxref("CharacterData")}}</td> + <td>29.0</td> + <td>{{CompatGeckoDesktop("25")}} [1]</td> + <td>{{CompatNo}}</td> + <td>16.0</td> + <td>{{CompatNo}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Prestació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 (en {{domxref("Element")}})</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatGeckoMobile("1.9.1")}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>9.8</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + <tr> + <td>Soporte en {{domxref("CharacterData")}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatGeckoMobile("25")}}</td> + <td>{{CompatNo}}</td> + <td>16.0</td> + <td>{{CompatNo}}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] Firefox 25 también añadía esta propiedad a {{domxref("DocumentType")}}, y fue eliminada en Firefox 28 debido a problemas de compatibildad.</p> + +<h2 id="Ver_también">Ver también</h2> + +<ul> + <li>El interfaz puro {{domxref("NonDocumentTypeChildNode")}}.</li> + <li> + <div class="syntaxbox">Tipos de objetos que implementan este interfaz puro: {{domxref("CharacterData")}}, y {{domxref("Element")}}.</div> + </li> +</ul> |