aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/getattributenode/index.html
blob: ad04bffcdcdb7033581ee31018434794eb037f50 (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
---
title: element.getAttributeNode
slug: Web/API/Element/getAttributeNode
tags:
  - API
  - DOM
  - Element
  - Method
  - Reference
translation_of: Web/API/Element/getAttributeNode
---
<p>{{ APIRef("DOM") }}</p>

<p>{{ 英語版章題("Summary") }}</p>

<h2 id=".E6.A6.82.E8.A6.81" name=".E6.A6.82.E8.A6.81">概要</h2>

<p>指定の要素の指定の属性を <code>Attr</code> ノードとして返します。</p>

<p>{{ 英語版章題("Syntax") }}</p>

<h2 id=".E6.A7.8B.E6.96.87" name=".E6.A7.8B.E6.96.87">構文</h2>

<pre class="eval"><em>var attrNode</em> = <em>element</em>.getAttributeNode(<em>attrName</em>);
</pre>

<ul>
 <li><code>attrNode</code> は指定の属性に対する <code>Attr</code> ノードです。</li>
 <li><code>attrName</code> は属性の名前を表す文字列です。</li>
</ul>

<p>{{ 英語版章題("Example") }}</p>

<h2 id=".E4.BE.8B" name=".E4.BE.8B"></h2>

<pre>// html: &lt;div id="top" /&gt;
var t = document.getElementById("top");
var idAttr = t.getAttributeNode("id");
alert(idAttr.value == "top")

</pre>

<p>{{ 英語版章題("Notes") }}</p>

<h2 id=".E6.B3.A8.E8.A8.98" name=".E6.B3.A8.E8.A8.98">注記</h2>

<p>HTML ドキュメントとしてフラグが立てられた DOM 内の HTML 要素で呼び出された場合、<code>getAttributeNode</code> は処理を進める前に引数を小文字にします。</p>

<p><code>Attr</code> ノードは <code>Node</code> から継承されますが、ドキュメント・ツリーの一部と考えることはできません。<a href="/ja/docs/Web/API/Node/parentNode">parentNode</a><a href="/ja/docs/Web/API/Node/previousSibling">previousSibling</a><a href="/ja/docs/Web/API/Node/nextSibling">nextSibling</a> のような一般の <code>Node</code> 属性は <code>Attr</code> ノードについては <code>null</code> です。しかしながら、<code>ownerElement</code> プロパティでは属性が属している要素を取得することができます。</p>

<p>要素の属性の値を取得するためには通常 <code>getAttributeNode</code> の代わりに <a href="/ja/docs/Web/API/Element/getAttribute">getAttribute</a> を使用します。</p>

<p>{{ DOMAttributeMethods() }}</p>

<p>{{ 英語版章題("Specification") }}</p>

<h2 id=".E4.BB.95.E6.A7.98" name=".E4.BB.95.E6.A7.98">仕様</h2>

<ul>
 <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-217A91B8">DOM Level 2 Core: getAttributeNode</a> (introduced in <a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-getAttributeNode">DOM Level 1 Core</a>)</li>
 <li><a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#apis-in-html-documents">HTML 5: APIs in HTML documents</a></li>
</ul>