--- title: element.hasAttributeNS slug: Web/API/Element/hasAttributeNS tags: - DOM - Gecko - 翻訳中 translation_of: Web/API/Element/hasAttributeNS ---

{{ ApiRef() }}

概要

hasAttributeNS は現在の要素が指定した属性を所有するか否かを示す boolean 値を返します。

構文

result =element.hasAttributeNS(namespace,localName)

// 値をセットする前に属性が存在しているか検証します。
var d = document.getElementById("div1");
if (d.hasAttributeNS(
        "http://www.mozilla.org/ns/specialspace/",
        "special-align")) {
   d.setAttribute("align", "center");
}

注記

{{ DOMAttributeMethods() }}

仕様

DOM Level 2 Core: hasAttributeNS