aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/haschildnodes
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/node/haschildnodes')
-rw-r--r--files/ja/web/api/node/haschildnodes/index.html31
-rw-r--r--files/ja/web/api/node/haschildnodes/index.md49
2 files changed, 49 insertions, 31 deletions
diff --git a/files/ja/web/api/node/haschildnodes/index.html b/files/ja/web/api/node/haschildnodes/index.html
deleted file mode 100644
index b4ed1654d3..0000000000
--- a/files/ja/web/api/node/haschildnodes/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
----
-title: Node.hasChildNodes
-slug: Web/API/Node/hasChildNodes
-tags:
- - DOM
- - Gecko
- - Gecko DOM Reference
-translation_of: Web/API/Node/hasChildNodes
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p><strong>hasChildNodes</strong> は指定した<a href="/ja/docs/Web/API/Node">ノード</a>が<a href="/ja/docs/Web/API/Node.childNodes">子ノード</a>を持つか否かを示す<a href="/ja/docs/JavaScript/Reference/Global_Objects/Boolean">真偽値</a>を返します。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox"><code>node.hasChildNodes()</code></pre>
-<h2 id="Example" name="Example">例</h2>
-<p><code>"foo"</code> を id に持つ要素の子ノードの存在を確認し、存在する場合は最初の子ノードを削除する例を以下に示します。</p>
-<pre class="brush:js;highlight:[3];">var foo = document.getElementById("foo");
-
-if ( foo.hasChildNodes() ) {
- foo.removeChild( foo.childNodes[0] );
-}</pre>
-<h2 id="Specification" name="Specification">仕様書</h2>
-<ul>
- <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-810594187">hasChildNodes</a></li>
-</ul>
-<h2 id="See_also" name="See_also">関連情報</h2>
-<ul>
- <li>{{domxref("Node.childNodes")}}</li>
- <li>{{domxref("Node.hasAttributes")}}</li>
-</ul>
diff --git a/files/ja/web/api/node/haschildnodes/index.md b/files/ja/web/api/node/haschildnodes/index.md
new file mode 100644
index 0000000000..85717cb827
--- /dev/null
+++ b/files/ja/web/api/node/haschildnodes/index.md
@@ -0,0 +1,49 @@
+---
+title: Node.hasChildNodes()
+slug: Web/API/Node/hasChildNodes
+tags:
+ - メソッド
+
+ - リファレンス
+browser-compat: api.Node.hasChildNodes
+translation_of: Web/API/Node/hasChildNodes
+---
+{{APIRef("DOM")}}
+
+**`hasChildNodes()`** は {{domxref("Node")}} インターフェイスのメソッドで、この {{domxref("Node")}} に[子ノード](/ja/docs/Web/API/Node/childNodes)があるかどうかを示す論理値を返します。
+
+## 構文
+
+```js
+hasChildNodes();
+```
+
+### 引数
+
+なし。
+
+### 返値
+
+論理値で、このノードに子ノードがあれば `true` を、そうでなければ `false` を返します。
+
+## 例
+
+```js
+let foo = document.getElementById('foo');
+
+if (foo.hasChildNodes()) {
+ // 'foo.childNodes' で何かを行う
+}
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- {{domxref("Node.childNodes")}}