aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/attr/namespaceuri/index.html
blob: cd92aecb0cd0fa75d6d9fb04e8746ad525a43c86 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
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>&lt;browser/&gt; </code>と解釈されます。</p>

<pre class="brush:js">if (attribute.localName == "value" &amp;&amp;
    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>{{Compat("api.Attr.namespaceURI")}}</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>