Node.parentElement
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
La propiedad de sólo lectura de Nodo.parentElement
devuelve el nodo padre del DOM Element
, o null
, si el nodo no tiene padre o si el padre no es un Element
DOM .
Sintaxis
elementoPadre = node.parentElement
El elementoPadre
es el padre del nodo actual. Esto es siempre un objecto Element
DOM, o null
.
Ejemplo
js
if (node.parentElement) {
node.parentElement.style.color = "red";
}
Especificaciones
Specification |
---|
DOM Standard # ref-for-dom-node-parentelement① |
Compatibilidad con navegadores
BCD tables only load in the browser