aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/isdefaultnamespace/index.md
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-27 13:04:02 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-03-06 14:10:33 +0900
commit5fbfeee5908241590dacb0f0aac3859f61360947 (patch)
treed66fb3c1d8cba07b41c60f8931a9bbe699a4e7b1 /files/ja/web/api/node/isdefaultnamespace/index.md
parentb88331943881611bbf03c9475fa8134d084b8ed2 (diff)
downloadtranslated-content-5fbfeee5908241590dacb0f0aac3859f61360947.tar.gz
translated-content-5fbfeee5908241590dacb0f0aac3859f61360947.tar.bz2
translated-content-5fbfeee5908241590dacb0f0aac3859f61360947.zip
Node インターフェイスのメソッドの記事を移行
Diffstat (limited to 'files/ja/web/api/node/isdefaultnamespace/index.md')
-rw-r--r--files/ja/web/api/node/isdefaultnamespace/index.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/files/ja/web/api/node/isdefaultnamespace/index.md b/files/ja/web/api/node/isdefaultnamespace/index.md
new file mode 100644
index 0000000000..018e6562cc
--- /dev/null
+++ b/files/ja/web/api/node/isdefaultnamespace/index.md
@@ -0,0 +1,35 @@
+---
+title: Node.isDefaultNamespace
+slug: Web/API/Node/isDefaultNamespace
+tags:
+ - DOM
+ - Gecko DOM Reference
+ - Namespaces
+ - Node
+translation_of: Web/API/Node/isDefaultNamespace
+---
+<div>
+ {{ApiRef}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+<p><code>isDefaultNamespace</code> は、引数としてネームスペース URI を受け取り、ネームスペースが指定されたノードのデフォルトのネームスペースである場合に <code>true</code> を返します。そうでない場合は <code>false</code> を返します。</p>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox"><var>result</var> = <var>node</var>.isDefaultNamespace(<var>namespaceURI</var>)
+</pre>
+<ul>
+ <li><var>result</var> : 戻り値は真偽値 (<code>true</code> / <code>false</code>) となる</li>
+ <li><var>namespaceURI</var> : 要素に対してチェックする、名前空間を表す文字列</li>
+</ul>
+<h2 id="Example" name="Example">例</h2>
+<pre class="brush:js">var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
+var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0];
+
+alert(el.isDefaultNamespace(XULNS)); // true</pre>
+<h2 id="Specification" name="Specification">仕様書</h2>
+<ul>
+ <li><a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isDefaultNamespace">DOM Level 3 Core: isDefaultNamespace</a></li>
+ <li><a href="/ja/docs/Code_snippets/IsDefaultNamespace" title="Code_snippets/IsDefaultNamespace">Code snippets: isDefaultNamespace</a></li>
+</ul>
+<h2 id="See_also" name="See_also">関連情報</h2>
+<ul>
+ <li><a href="/ja/docs/Code_snippets/IsDefaultNamespace" title="Code_snippets/IsDefaultNamespace">Code snippets: isDefaultNamespace</a></li>
+</ul>