aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/issamenode
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/node/issamenode
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/node/issamenode')
-rw-r--r--files/ja/web/api/node/issamenode/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/files/ja/web/api/node/issamenode/index.html b/files/ja/web/api/node/issamenode/index.html
new file mode 100644
index 0000000000..f94668cfd5
--- /dev/null
+++ b/files/ja/web/api/node/issamenode/index.html
@@ -0,0 +1,39 @@
+---
+title: Node.isSameNode
+slug: Web/API/Node/isSameNode
+tags:
+ - DOM
+ - Gecko DOM Reference
+ - Node
+translation_of: Web/API/Node/isSameNode
+---
+<div>
+ {{ApiRef}}{{Obsolete_header}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+<p>ふたつのノードが同一ノードの場合は <code>true</code> を、異なる場合は <code>false</code> を返します。</p>
+<div class="warning">
+ <strong>注記</strong>: このメソッドは DOM level 4 で削除されており、Gecko 10.0 {{geckoRelease("10.0")}} やその他のブラウザの最近のバージョンには実装されていません。よって、別の方法を採る必要があります。<br>
+ <pre class="brush:js">// 当メソッド
+node1.isSameNode(node2)
+
+// 代替策
+node1 === node2
+node1 == node2
+
+</pre>
+</div>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox"><var>isSameNode</var> = <var>node</var>.isSameNode(<var>org</var>);
+</pre>
+<ul>
+ <li><var>arg</var> : 比較ノード</li>
+</ul>
+<h2 id="Specification" name="Specification">仕様書</h2>
+<ul>
+ <li>{{spec("http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isSameNode","DOM Level 3 Core: isSameNode","REC")}}</li>
+ <li>{{spec("http://www.w3.org/TR/domcore/","DOM Core Level 4","WD")}} で削除されています</li>
+</ul>
+<h2 id="See_also" name="See_also">関連情報</h2>
+<ul>
+ <li>{{domxref("Node.isEqualNode")}}</li>
+</ul>