1

我克隆了一个这样的元素

var myVar = null;
myVar = $(someOtherVar).clone(true, true)

现在我想anotherVar完全替换为myVar. 怎么做?

我试过$(anotherVar).replaceWith(myVar)了,但这不起作用。还有其他方法可以anotherVar完全替换为 的数据和事件myVar吗?

4

1 回答 1

1

更新

因为你想要两个参考:

var myVar = $(someOtherVar).clone(true, true);
var anotherVar = $(myVar).clone(true, true);;

如果您需要两个克隆,则必须克隆两次。没有办法解决它。

于 2013-05-09T13:24:20.973 回答