Element: hasAttributeNS() メソッド
hasAttributeNS
は、現在の要素が指定された属性を持っているかどうかを示す論理値を返します。
構文
js
hasAttributeNS(namespace,localName)
引数
namespace
は属性の名前空間を特定する文字列です。localName
は属性の名前です。
返値
論理値です。
例
js
// 値をセットする前に属性が存在しているか検証します。
const d = document.getElementById("div1");
if (
d.hasAttributeNS("http://www.mozilla.org/ns/specialspace/", "special-align")
) {
d.setAttribute("align", "center");
}
メモ
DOM メソッドは要素の属性を取り扱います。
名前空間に無関係、 最も一般的に使用されるメソッド |
名前空間に限定される変数 (DOM Level 2) |
Attr ノードを直接扱う DOM レベル 1 のメソッド(ほとんど使用されない) |
Attr ノードを直接扱う DOM レベル 2 名前空間に限定されるメソッド(ほとんど使用されない) |
---|---|---|---|
setAttribute (DOM 1) |
setAttributeNS |
setAttributeNode |
setAttributeNodeNS |
getAttribute (DOM 1) |
getAttributeNS |
getAttributeNode |
getAttributeNodeNS |
hasAttribute (DOM 2) |
hasAttributeNS |
- | - |
removeAttribute (DOM 1) |
removeAttributeNS |
removeAttributeNode |
- |
仕様書
Specification |
---|
DOM Standard # ref-for-dom-element-hasattributens① |
ブラウザーの互換性
BCD tables only load in the browser