web api instance method
Document: createElementNS() method
The createElementNS() method of the Document interface creates a new element with the specified namespace URI and qualified name.
This is useful in mixed-namespace documents, such as SVG or MathML embedded in HTML, where the parser cannot reliably infer the namespace.
The createElement() method is simpler if you want to create a plain HTML element.
Syntax
createElementNS(namespaceURI, qualifiedName)
createElementNS(namespaceURI, qualifiedName, options)
Parameters
-
namespaceURI- : A string that specifies the
namespaceURIto associate with the element. Some important namespace URIs are:
- : A string that specifies the
-
qualifiedName-
: A string containing the qualified name of the new element. The
nodeNameproperty of the created element is initialized with this value.The format of the qualified name is
prefix:localNameorlocalName, where the parts are defined as:-
prefixOptional-
: A “short alias” for the namespace. The prefix is optional, but if it is specified the
namespaceURIparameter must also be specified. If the prefix is set toxmlorxmlns, thenamespaceURImust be set tohttp://www.w3.org/XML/1998/namespaceorhttp://www.w3.org/2000/xmlns/, respectively.The value is used to initialize the new element’s
prefixproperty. Defaults tonull.
-
-
localName- : The local name of the element.
The value is used to initialize the new element’s
localNameproperty.
- : The local name of the element.
The value is used to initialize the new element’s
-
-
-
optionsOptional-
: An object with the following optional properties (note that only one of
isandcustomElementRegistrymay be set):isOptional- : A string defining the tag name for a custom element previously defined using
customElements.define(). The new element will be given anisattribute whose value is the custom element’s tag name.
- : A string defining the tag name for a custom element previously defined using
customElementRegistryOptional- : A
CustomElementRegistrythat sets the Scoped custom element registry of a custom element.
- : A
For backward compatibility, some browsers allow you to pass a string here instead of an object, where the string’s value is the custom element’s tag name. See Extending native HTML elements for more information on how to use this parameter.
-
Return value
The new Element.
Exceptions
-
NamespaceErrorDOMException- : Thrown if the
namespaceURIvalue is:- not a valid namespace URI.
- set to the empty string when
prefixhas a value. - not the value
http://www.w3.org/XML/1998/namespaceorhttp://www.w3.org/2000/xmlns/whenprefixis set toxmlorxmlns, respectively.
- : Thrown if the
-
InvalidCharacterErrorDOMException-
: Thrown if either the
prefixorlocalNameis not valid:- The
prefixmust have at least one character, and cannot contain ASCII whitespace,NULL,/, or>(U+0000, U+002F, or U+003E, respectively). - The
localNameis a valid element name if it has a length of at least 1 and:- it starts with an alphabet character and does not contain ASCII whitespace,
NULL,/, or>(U+0000, U+002F, or U+003E, respectively). - it starts with
:(U+003A),_(U+005F), or any characters in the range U+0080 to U+10FFFF (inclusive), and the remaining code points only include those same characters along with the ASCII alphanumeric characters,-(U+002D), and.(U+002E),
- it starts with an alphabet character and does not contain ASCII whitespace,
[!NOTE] Earlier versions of the specification were more restrictive, requiring that the
qualifiedNamebe a valid XML name. - The
-
-
NotSupportedErrorDOMException- : Thrown if both the
isandcustomElementRegistryoptions are specified.
- : Thrown if both the
Examples
Basic usage
This shows how to create a new <div> element in the XHTML namespace.
const divElementXHTML = document.createElementNS(
"http://www.w3.org/1999/xhtml",
"div",
);
// This is equivalent!
const divElementHTML = document.createElement("div");
Create an SVG element
This example shows how you might create an SVG element (SVGSVGElement) and append it to the HTML <body> element.
Using createElementNS() with the SVG namespace is necessary when working with an HTML document.
If you were to call createElement(\svg\), an HTMLUnknownElement would be returned, and the SVG would not be rendered.
const svgNS = "http://www.w3.org/2000/svg";
const svg = document.createElementNS(svgNS, "svg");
svg.setAttribute("width", "100");
svg.setAttribute("height", "100");
const circle = document.createElementNS(svgNS, "circle");
circle.setAttribute("cx", "50");
circle.setAttribute("cy", "50");
circle.setAttribute("r", "40");
circle.setAttribute("fill", "steelblue");
svg.appendChild(circle);
document.body.appendChild(svg);