aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/attr/prefix/index.html
blob: 019fd06e0aa4254b0b4f5907e75437eb18c265e9 (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
---
title: Attr.prefix
slug: Web/API/Attr/prefix
tags:
  - API
  - DOM
  - Property
  - Reference
translation_of: Web/API/Attr/prefix
---
<div>{{APIRef("DOM")}}</div>

<p><code><strong>Attr.prefix</strong></code> という読み取り専用のプロパティは特定の属性の名前空間の接頭辞、もしくは接頭辞の指定がなければ <code>null</code> を返します。</p>

<div class="note">
<p>DOM4 以前は この API は {{domxref("Node")}} で定義されていました。</p>
</div>

<h2 id="構文">構文</h2>

<pre class="syntaxbox"><var>string</var> = <var>attribute</var>.prefix
</pre>

<h2 id="例"></h2>

<p>次の例はコンソールに "x" と出力します。</p>

<pre class="brush:xml">&lt;div x:id="example" onclick="console.log(this.attributes[0].prefix)"/&gt;
</pre>

<h2 id="注記">注記</h2>

<p>これは例えば文書が XML の MIME タイプで提供されているといった名前空間を認識するパーサーを使用した場合だけ動作します。これは HTML 文書では動作しません。</p>

<h2 id="仕様">仕様</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('DOM WHATWG', '#dom-attr-prefix', 'Attr: prefix')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName("DOM4", "#dom-attr-prefix", "Attr.prefix")}}</td>
   <td>{{Spec2("DOM4")}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの実装状況">ブラウザの実装状況</h2>



<p>{{Compat("api.Attr.prefix")}}</p>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li>{{domxref("Attr.namespaceURI")}}</li>
 <li>{{domxref("Attr.localName")}}</li>
 <li>{{domxref("Element.prefix")}}</li>
 <li>{{domxref("Node.prefix")}}</li>
</ul>