--- title: Node.isDefaultNamespace slug: Web/API/Node/isDefaultNamespace tags: - DOM - Gecko DOM Reference - Namespaces - Node translation_of: Web/API/Node/isDefaultNamespace ---
isDefaultNamespace
は、引数としてネームスペース URI を受け取り、ネームスペースが指定されたノードのデフォルトのネームスペースである場合に true
を返します。そうでない場合は false
を返します。
result = node.isDefaultNamespace(namespaceURI)
true
/ false
) となるvar XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0]; alert(el.isDefaultNamespace(XULNS)); // true