createAttributeNS(namespaceURI, qualifiedName )
|
|||||||||||||||
Parameters
|
StringnamespaceURI
The namespace URI of the attribute to create.
StringqualifiedName
The qualified name of the attribute to instantiate.
|
||||||||||||||
Returns
|
Attr. A new Attr object with the following attributes:
|
||||||||||||||
Throws
|
DOMException
INVALID_CHARACTER_ERR: Raised if the specified qualified name contains an illegal character.
NAMESPACE_ERR: Raised if the qualifiedName is malformed, if the qualifiedName has a prefix and the namespaceURI is null, if the qualifiedName has a prefix that is "xml" and the namespaceURI is different from " http://www.w3.org/XML/1998/namespace", or if the qualifiedName is "xmlns" and the namespaceURI is different from " http://www.w3.org/2000/xmlns/".
|