javascript – 为什么cloneNode会排除自定义属性?

前端之家收集整理的这篇文章主要介绍了javascript – 为什么cloneNode会排除自定义属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这与问题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树的深层副本.

我在这里错过了什么吗?

最佳答案
属性不等于属性.

请改用setAttribute()和getAttribute().

var theSource = document.getElementById("someDiv")
theSource.setAttribute('dictator','stalin');

var theClone = theSource.cloneNode(true);
alert(theClone.getAttribute('dictator')); 
原文链接:https://www.f2er.com/js/429582.html

猜你在找的JavaScript相关文章