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

{{ ApiRef() }}

概要

setAttributeNS は指定の名前空間と名前で新しい属性を追加したり、属性の値を変更します。

構文

element.setAttributeNS(namespace,name,value)

var d = document.getElementById("d1");
d.setAttributeNS("http://www.mozilla.org/ns/specialspace", "align", "center");

Notes

{{ DOMAttributeMethods() }}

仕様

DOM Level 2 Core: setAttributeNS