aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/stylesheet/href/index.html
blob: f1ff1da5ea7521da01fdf2a3be79efe2cf155a03 (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
---
title: Stylesheet.href
slug: Web/API/StyleSheet/href
translation_of: Web/API/StyleSheet/href
---
<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>

<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>

<p><font><font>Renvoie l'emplacement de la feuille de style.</font></font></p>

<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>

<pre class="eval"><em><font><font>Uri</font></font></em><font><font> = stylesheet.href
</font></font></pre>

<h3 id="Parameters" name="Parameters"><font><font>Paramètres</font></font></h3>

<ul>
 <li><code>uri</code><font><font> Est une chaîne contenant l'URI de la feuille de style.</font></font></li>
</ul>

<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>

<pre><font><font> // sur une machine locale: </font></font><font><font>
 &lt;Html&gt; </font></font><font><font>
  &lt;Tête&gt; </font></font><font><font>
   &lt;Link rel = "StyleSheet" href = "example.css" type = "text / css" /&gt; </font></font><font><font>
   &lt;Script&gt; </font></font><font><font>
    Function sref () { </font></font><font><font>
     Alerte (document.styleSheets [0] .href); </font></font><font><font>
    }</font></font><font><font>
   &lt;/ Script&gt; </font></font><font><font>
  &lt;/ Head&gt; </font></font><font><font>
  &lt;Body&gt; </font></font><font><font>
   &lt;Div class = "tonnerre"&gt; Thunder &lt;/ div&gt;</font></font><font><font>
   &lt;Button onclick = "sref ()"&gt; ss &lt;/ button&gt;</font></font><font><font>
  &lt;/ Body&gt; </font></font><font><font>
 &lt;/ Html&gt;</font></font><font><font>
// retourne "fichier: //// C: /Windows/Desktop/example.css</font></font>
</pre>

<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>

<p><font><font>Si la feuille de style est une feuille de style liée, la valeur de son attribut est son emplacement. </font><font>Pour les feuilles de style en ligne, la valeur de cet attribut est </font></font><code>NULL</code><font><font>.</font></font></p>

<p><font><font>Cette propriété est en lecture seule sur Firefox, Opera, Google Chrome et Safari, et elle est lue / écrite dans Internet Explorer.</font></font></p>

<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>

<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-href"><font><font>Href </font></font></a></p>