admin管理员组文章数量:1345465
Why does elementA === elementB produce different results then elementB.isEqualNode(elementA)?
After checking this answer on Is there a way to check if two DOM elements are equal? I'm trying to check if two elements are equal in javascript using ===
. Surprisingly, when element A
and B
are the same A === B
returns false
while B.isEqualNode(A)
returns true
.
Here's an example:
html:
<div>
<h1>Test</h1>
</div>
JavaScript:
var inMemoryDiv = document.createElement('div');
var inMemoryH1 = document.createElement('h1');
inMemoryH1.innerHTML = "Test";
inMemoryDiv.appendChild(inMemoryH1);
var h1 = document.getElementsByTagName('h1')[0];
alert(h1 === inMemoryH1); // false
alert(inMemoryH1.isEqualNode(h1)); // true
alert(h1.innerHTML === inMemoryH1.innerHTML); // true
Replicated in a fiddle.
Why is this the case?
Why does elementA === elementB produce different results then elementB.isEqualNode(elementA)?
After checking this answer on Is there a way to check if two DOM elements are equal? I'm trying to check if two elements are equal in javascript using ===
. Surprisingly, when element A
and B
are the same A === B
returns false
while B.isEqualNode(A)
returns true
.
Here's an example:
html:
<div>
<h1>Test</h1>
</div>
JavaScript:
var inMemoryDiv = document.createElement('div');
var inMemoryH1 = document.createElement('h1');
inMemoryH1.innerHTML = "Test";
inMemoryDiv.appendChild(inMemoryH1);
var h1 = document.getElementsByTagName('h1')[0];
alert(h1 === inMemoryH1); // false
alert(inMemoryH1.isEqualNode(h1)); // true
alert(h1.innerHTML === inMemoryH1.innerHTML); // true
Replicated in a fiddle.
Why is this the case?
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Apr 20, 2014 at 1:26 agcontiagconti 18.2k17 gold badges83 silver badges118 bronze badges2 Answers
Reset to default 8isEqualNode
is defined in DOM Level 3 thus:
This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with
Node.isSameNode()
. All nodes that are the same will also be equal, though the reverse may not be true.Two nodes are equal if and only if the following conditions are satisfied:
- The two nodes are of the same type.
- The following string attributes are equal: nodeName, localName, namespaceURI, prefix, nodeValue. This is: they are both null, or they have the same length and are character for character identical.
- The attributes NamedNodeMaps are equal. This is: they are both null, or they have the same length and for each node that exists in one map there is a node that exists in the other map and is equal, although not necessarily at the same index.
- The childNodes NodeLists are equal. This is: they are both null, or they have the same length and contain equal nodes at the same index. Note that normalization can affect equality; to avoid this, nodes should be normalized before being pared.
You create a new element. That is not the very same as the already existing one. They are equal though as they have the same structure and content. It's like two string objects are equal if they contain the same text but not the same if you created them separately.
Here's an even simpler case:
var div1 = document.createElement('div');
var div2 = document.createElement('div');
alert(div1 === div2); // false
alert(div1.isEqualNode(div2)); // true
本文标签: Checking if two elements are equal in JavaScriptStack Overflow
版权声明:本文标题:Checking if two elements are equal in JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743762883a2534705.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论