blob: e7a14fb52808878c8870ca10896c7ed05a638ebc (
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
|
---
title: Stylesheet.ownerNode
slug: Web/API/StyleSheet/ownerNode
translation_of: Web/API/StyleSheet/ownerNode
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">Resumen</h3>
<p><strong>ownerNode</strong> devuelve el nodo que asocia la hoja de estilo con el documento.</p>
<h3 id="Syntax" name="Syntax">Sintaxis</h3>
<pre class="eval"><em>objRef</em> = stylesheet.ownerNode
</pre>
<h3 id="Example" name="Example">Ejemplo</h3>
<pre class="eval"><html>
<head>
<link rel="StyleSheet" href="example.css" type="text/css" />
<script>
function stilo() {
alert(document.styleSheets[0].ownerNode);
}
</script>
</head>
<body>
</pre>
<div class="thunder">
Thunder</div>
<pre class="eval"> <button onclick="stilo()">ss</button>
</body>
</html>
// displays "object HTMLLinkElement"
</pre>
<h3 id="Notes" name="Notes">Notas</h3>
<p>Para el HTML, <strong>ownerNode</strong> correspondería a un elemento <a href="/es/LINK" title="es/LINK">LINK</a> o <a href="/Es/DOM/Element.style" title="es/DOM/element.style">STYLE</a>. Para XML, serían las instrucciones del proceso de enlace. Para las hojas de estilo que están incluidas en otras hojas de estilo, este valor es NULL.</p>
<h3 id="Specification" name="Specification">Especificación</h3>
<p>DOM Level 2 Styles - STYLESHEET</p>
<p>{{ languages( { "pl": "pl/DOM/stylesheet.ownerNode" } ) }}</p>
|