aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/issamenode/index.html
blob: f94668cfd56d881db09751a511b916fed75c8220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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>