这与问题javascript cloneNode and properties有关.
我看到了同样的行为. Node.cloneNode不会复制我自己添加的任何属性(来自原始帖子的代码):
var theSource = document.getElementById("someDiv")
theSource.dictator = "stalin";
var theClone = theSource.cloneNode(true);
alert(theClone.dictator);
theClone不包含任何属性“独裁者”.
我无法找到任何解释为什么会这样. documentation on MDN声明cloneNode“复制其所有属性及其值”,这条线直接取自DOM specification本身.
这似乎打破了我,因为它几乎不可能做包含自定义属性的DOM树的深层副本.
我在这里错过了什么吗?
最佳答案
原文链接:https://www.f2er.com/js/429582.html