Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Node.isSameNode

廃止
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

概要

ふたつのノードが同一ノードの場合は true を、異なる場合は false を返します。

注記: このメソッドは DOM level 4 で削除されており、Gecko 10.0 (Firefox 10.0 / Thunderbird 10.0 / SeaMonkey 2.7) やその他のブラウザの最近のバージョンには実装されていません。よって、別の方法を採る必要があります。
// 当メソッド
node1.isSameNode(node2)

// 代替策
node1 === node2
node1 == node2

構文

isSameNode = node.isSameNode(org);
  • arg : 比較ノード

仕様書

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank
 最終更新者: khalid32,