diff options
Diffstat (limited to 'files/ja/web/api/attr/namespaceuri/index.html')
-rw-r--r-- | files/ja/web/api/attr/namespaceuri/index.html | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/files/ja/web/api/attr/namespaceuri/index.html b/files/ja/web/api/attr/namespaceuri/index.html new file mode 100644 index 0000000000..c294fa3633 --- /dev/null +++ b/files/ja/web/api/attr/namespaceuri/index.html @@ -0,0 +1,126 @@ +--- +title: Attr.namespaceURI +slug: Web/API/Attr/namespaceURI +tags: + - API + - DOM + - NeedsBrowserCompatibility + - NeedsMobileBrowserCompatibility + - Property + - Reference +translation_of: Web/API/Attr/namespaceURI +--- +<div>{{APIRef("DOM")}}<br> +<strong><code>Attr.namespaceURI</code></strong> 読み取り専用プロパティは、属性の名前空間 URI を返し、要素が名前空間にない場合は <code>null</code> を返します。</div> + +<div class="note"> +<p>DOM4 以前では、この API は {{domxref("Node")}} インターフェイス内で定義されていました。</p> +</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox"><var>namespace</var> = <var>attribute</var>.namespaceURI</pre> + +<h2 id="Example" name="Example">例</h2> + +<p>このスニペットでは、{{domxref("localName")}} とその <code>namespaceURI</code> について属性を調べています。<br> + <code>namespaceURI</code> がXUL名前空間を返し、<code>localName</code> が "browser" を返した場合、ノードは XUL <code><browser/> </code>と解釈されます。</p> + +<pre class="brush:js">if (attribute.localName == "value" && + attribute.namespaceURI == "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul") { + // this is a XUL value +}</pre> + +<h2 id="Notes" name="Notes">注記</h2> + +<p>これは、スコープ内の名前空間宣言の検査に基づいた名前空間探索の結果である計算値ではありません。属性の名前空間 URI は、属性作成時に固定されます。</p> + +<p>Firefox 3.5 以前では、HTML 文書の HTML 属性の名前空間 URI は <code>null</code> です。<br> + それ以降のバージョンでは、HTML5 に準拠して、XHTML と同様に <code><a class="external" href="https://www.w3.org/1999/xhtml" rel="freelink">https://www.w3.org/1999/xhtml</a></code> になります。{{gecko_minversion_inline("1.9.2")}}</p> + +<p>DOM Level 2 メソッドの {{domxref("Element.setAttributeNS")}} を使用して、指定された <code>namespaceURI</code> で属性を作成できます。</p> + +<p><a href="https://www.w3.org/TR/xml-names11/">XML の名前空間</a>仕様では、属性は名前空間がアタッチされている要素からその名前空間を継承しません。<br> + 属性に明示的に名前空間が与えられていない場合、名前空間はありません。</p> + +<p>DOM は、名前空間の検証自体を処理したり、実行したりしません。必要な検証を行うのは DOM アプリケーションの責任です。名前空間の接頭辞は、いったん特定のノードに関連付けられると変更できません。</p> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">ステータス</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("DOM4", "#dom-element-namespaceuri", "Element.namespaceuri")}}</td> + <td>{{Spec2("DOM4")}}</td> + <td>初版</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー互換性</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>基本サポート</td> + <td>46.0<sup>[1]</sup></td> + <td>{{CompatGeckoDesktop("48.0")}}<sup>[1]</sup></td> + <td>{{CompatUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>基本サポート</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatGeckoMobile("48.0")}}<sup>[1]</sup></td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] この API は、以前は {{domxref("Node")}} API で利用できました。</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{domxref("Attr.localName")}}</li> + <li>{{domxref("Attr.prefix")}}</li> + <li>{{domxref("Element.namespaceURI")}}</li> + <li>{{domxref("Node.namespaceURI")}}</li> +</ul> |