--- title: Node.isDefaultNamespace slug: Web/API/Node/isDefaultNamespace tags: - DOM - Gecko DOM Reference - Namespaces - Node translation_of: Web/API/Node/isDefaultNamespace ---
{{ApiRef}}

概要

isDefaultNamespace は、引数としてネームスペース URI を受け取り、ネームスペースが指定されたノードのデフォルトのネームスペースである場合に true を返します。そうでない場合は false を返します。

構文

result = node.isDefaultNamespace(namespaceURI)

var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0];

alert(el.isDefaultNamespace(XULNS)); // true

仕様書

関連情報