Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.setAttributeNodeNS

<breadcrumbs></breadcrumbs>

このページは翻訳中です。
翻訳作業に参加する場合は、履歴にある翻訳者と連絡·調整してください。


== Summary ==

概要

<code>setAttributeNodeNS</code> adds a new attribute node with the specified namespace and name. setAttributeNodeNS は指定の名前空間と名前で新しい属性ノードを追加します。

== Syntax ==

構文

replacedAttr = element.setAttributeNodeNS(attributeNode) 

* <code>replacedAttr</code> is the replaced attribute node, if any, returned by this function. * <code>attributeNode</code> is an <code>Attr</code> node.

  • replacedAttr は、この関数によって返されるのであれば、置き換えられた属性ノードです。
  • attributeNodeAttr ノードです.

Example

// <div id="one" special-align="utterleft">one</div> 
// <div id="two">two</div> 

var myns = "https://www.mozilla.org/ns/specialspace"; 
var d1 = document.getElementById("one"); 
var d2 = document.getElementById("two"); 
var a = d1.getAttributeNodeNS(myns, "special-align"); 
d2.setAttributeNodeNS(a); 

alert(d2.attributes[1].value) // returns: `utterleft'

== Notes ==

注記

If the specified attribute already exists on the element, then that attribute is replaced with the new one and the replaced one is returned. 指定の属性が既に存在しているときは、その属性新しいものに置き換えられ、置き換えられたものが戻り値として返されます。

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 Level 2 Core: setAttributeNodeNS

 

 

 

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, Ryotakano
 最終更新者: khalid32,