이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!
The Node.isDefaultNamespace()
method accepts a namespace URI as an argument and returns a Boolean
with a value of true
if the namespace is the default namespace on the given node or false
if not.
Syntax
result = node.isDefaultNamespace(namespaceURI)
result
holds the return valuetrue
orfalse
.namespaceURI
is a string representing the namespace against which the element will be checked.
Example
var XULNS = "https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0]; alert(el.isDefaultNamespace(XULNS)); // true