Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.14 KB

File metadata and controls

47 lines (32 loc) · 1.14 KB
title short-title slug l10n
Element: removeAttributeNS() メソッド
removeAttributeNS()
Web/API/Element/removeAttributeNS
sourceCommit
bbf7f25f9cf95fb154e2740a9fdc9c02818981bf

{{ 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 値を既定値にリセットします。