setting parent node in javascript

2019-06-11 01:16发布

when Im cloning an object in javascript by doing object.cloneNode(true) the parentNode is null in the new copy. Im trying to set it but with no success. my code look like this:

old_DataRoot = DataRoot.cloneNode(true);
old_DataRoot.parentNode=DataRoot.parentNode.cloneNode(true);

also tried:

    old_DataRoot = DataRoot.cloneNode(true);
    old_DataRoot.parentNode.appendChild(DataRoot.parentNode.cloneNode(true));

both options give me "old_DataRoot.parentNode is null or not an object" what am I doing wrong?

thanks alot, Yoni.

3条回答
干净又极端
2楼-- · 2019-06-11 01:42

Is this what you're trying to do?

old_DataRoot = DataRoot.cloneNode(true);
DataRoot.parentNode.appendChild(old_DataRoot);
查看更多
狗以群分
3楼-- · 2019-06-11 01:54

Yes, that's true, parentNode is a read-only property.

In your second case you need know that only one of the nodes is attached to the DOM. It's dataRoot which still has the parentnode, the result of the clone (which you called old_DataRoot) is unattached:

dataRoot.parentNode.appendChild(newDataRoot = dataRoot.cloneNode(true));
查看更多
Animai°情兽
4楼-- · 2019-06-11 01:57

If you're trying

to make a backup of the original DataRoot in order to recover it later.

then consider

// Backup
var DataRootBackup = {
    nodes: DataRoot.cloneNode(true),
    parent: DataRoot.parentNode
};

// Restore
DataRootBackup.parent.appendChild( DataRootBackup.nodes );
查看更多
登录 后发表回答