aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/stylesheet/href
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/stylesheet/href
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/stylesheet/href')
-rw-r--r--files/ja/web/api/stylesheet/href/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/stylesheet/href/index.html b/files/ja/web/api/stylesheet/href/index.html
new file mode 100644
index 0000000000..b368c0545b
--- /dev/null
+++ b/files/ja/web/api/stylesheet/href/index.html
@@ -0,0 +1,46 @@
+---
+title: StyleSheet.href
+slug: Web/API/StyleSheet/href
+tags:
+ - DOM
+ - Gecko
+ - Gecko DOM Reference
+ - StyleSheet
+translation_of: Web/API/StyleSheet/href
+---
+<div>
+ {{ApiRef}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+<p>スタイルシートの URI を返します。</p>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox"><var>uri</var> = stylesheet.href
+</pre>
+<ul>
+ <li><code>uri</code> : スタイルシートの URI</li>
+</ul>
+<h2 id="Example" name="Example">例</h2>
+<p>以下に示す HTML をローカルに配置して表示し、ボタンを押下した場合 <code>file:////C:/Windows/Desktop/example.css</code> などの様な文字列が表示されます。</p>
+<pre class="brush:html;highlight:[4,7,13]">&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;link rel="stylesheet" href="example.css" /&gt;
+&lt;script&gt;
+function sref() {
+ alert(document.styleSheets[0].href);
+}
+&lt;/script&gt;
+&lt;/head&gt;
+
+&lt;body&gt;
+ &lt;button onclick="sref()"&gt;alert(document.styleSheets[0].href) を実行&lt;/button&gt;
+&lt;/body&gt;
+
+&lt;/html&gt;
+</pre>
+<h2 id="Notes" name="Notes">注記</h2>
+<p>スタイルシートがリンクされたものである場合は、その {{HTMLElement("style")}} 要素の <code>href</code> 属性の示す位置が返ります。インラインスタイルのシートの場合の戻り値は <code>NULL</code> となります。</p>
+<p>このプロパティは Firefox 、 Opera 、 Google Chrome 、 Safari に於いては読取専用ですが、 Internet Explorer では読取 / 書込ともに可能となっています。</p>
+<h2 id="Specification" name="Specification">仕様書</h2>
+<ul>
+ <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-href">href </a></li>
+</ul>