blob: 1999a7a80292c2846c8e15c5164cb1d0beb1a30e (
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
|
---
title: element.hasAttribute
slug: Web/API/Element/hasAttribute
tags:
- DOM
- DOM Element Methods
- Gecko
translation_of: Web/API/Element/hasAttribute
---
<div>{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p>hasAttribute</p>
<p>は指定の要素が指定の属性を持つか否かを示す真偽値を返します。</p>
<p> </p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>var result</var> = <var>element</var>.hasAttribute(<var>attName</var>);
</pre>
<ul>
<li><code>result</code> : true または false の戻り値を保有</li>
<li><code>attName</code> : 属性の名前を表す文字列を指定</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<p>対象属性の存在をチェックし、無い場合にのみ属性を設定する例を以下に示します。</p>
<pre class="brush:js;highlight:[4]">var d = document.getElementById("div1"); // 対象要素を取得
if ( !d.hasAttribute("align") ) {
d.setAttribute("align", "center");
}</pre>
<h2 id="Notes" name="Notes">注記</h2>
<div>{{DOMAttributeMethods}}</div>
<h2 id="Specification" name="Specification">仕様書</h2>
<ul>
<li><a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-ElHasAttr">DOM Level 2 Core: hasAttribute</a></li>
<li><a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-ElHasAttr">DOM Level 3 Core: hasAttribute</a></li>
</ul>
|