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.setAttributeNS()

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

setAttributeNS añade un nuevo atributo o cambia el valor de un atributo con el namespace dado y el nombre.

Sintaxis

elemento.setAttributeNS(namespace,nombre,valor)
  • namespace es un string especificando el namespace del atributo.
  • name es un string identificando el atributo a ser puesto.
  • value es el string del valor deseado del nuevo atributo.

Ejemplo

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

Notas

Métodos DOM que tratan con atributos de elementos:

Not namespace-aware, most commonly used methods Namespace-aware variants (DOM Level 2) DOM Level 1 methods for dealing with Attr nodes directly (seldom used) DOM Level 2 namespace-aware methods for dealing with Attr nodes directly (seldom used)
setAttribute (DOM 1) setAttributeNS setAttributeNode setAttributeNodeNS
getAttribute (DOM 1) getAttributeNS getAttributeNode getAttributeNodeNS
hasAttribute (DOM 2) hasAttributeNS - -
removeAttribute (DOM 1) removeAttributeNS removeAttributeNode -

Especificación

DOM Level 2 Core: setAttributeNS

Etiquetas y colaboradores del documento

 Colaboradores en esta página: developersoul
 Última actualización por: developersoul,