aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/stylesheet/href/index.html
blob: 0f4a42dd0cdaea41708257b350d406db39a9d015 (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
---
title: stylesheet.href
slug: Web/API/StyleSheet/href
translation_of: Web/API/StyleSheet/href
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">Resumen</h3>
<p>Devuelve la localización de la hoja de estilo.</p>
<h3 id="Syntax" name="Syntax">Sintaxis</h3>
<pre class="eval"><em>uri</em> = stylesheet.href
</pre>
<h3 id="Parameters" name="Parameters">Parámetros</h3>
<ul>
 <li><code>uri</code> es una cadena que contiene la URI de la hoja de estilo.</li>
</ul>
<h3 id="Example" name="Example">Ejemplo</h3>
<pre> // en una máquina local:
 &lt;html&gt;
  &lt;head&gt;
   &lt;link rel="StyleSheet" href="example.css" type="text/css" /&gt;
   &lt;script&gt;
    function sref() {
     alert(document.styleSheets[0].href);
    }
   &lt;/script&gt;
  &lt;/head&gt;
  &lt;body&gt;
   &lt;div class="thunder"&gt;Thunder&lt;/div&gt;
   &lt;button onclick="sref()"&gt;ss&lt;/button&gt;
  &lt;/body&gt;
 &lt;/html&gt;
// returns "file:////C:/Windows/Desktop/example.css
</pre>
<h3 id="Notes" name="Notes">Notas</h3>
<p>Si la hoja de estilo es un enlace, el valor de este atributo es su localización. Para las hojas de estilo in-line, el valor del atributo es NULL.</p>
<p> </p>
<h3 id="Specification" name="Specification">Specification</h3>
<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-href">href </a></p>