title | short-title | slug | l10n | ||
---|---|---|---|---|---|
Element: removeAttributeNS() メソッド |
removeAttributeNS() |
Web/API/Element/removeAttributeNS |
|
{{ APIRef("DOM") }}
removeAttributeNS()
は {{domxref("Element")}} インターフェイスのメソッドで、要素から指定された属性を取り除きます。
removeAttributeNS(namespace, attrName)
namespace
は文字列で、属性の名前空間を示します。attrName
は文字列で、現在のノードから取り除く属性の名前を示します。
なし ({{jsxref("undefined")}})。
// Given:
// <div id="div1" xmlns:special="http://www.mozilla.org/ns/specialspace"
// special:specialAlign="utterleft" width="200px" />
d = document.getElementById("div1");
d.removeAttributeNS("http://www.mozilla.org/ns/specialspace", "specialAlign");
// Now: <div id="div1" width="200px" />
{{Specifications}}
{{Compat}}
Firefox 3 以降では、このメソッドは DOM 値を既定値にリセットします。