我克隆了像这样的元素
var myVar = null;
myVar = $(someOtherVar).clone(true, true)
现在我想完全用anotherVar
替换myVar
。怎么做?
我试过$(anotherVar).replaceWith(myVar)
但这不起作用。使用anotherVar
的数据和事件完全替换myVar
的任何其他方式?
答案 0 :(得分:1)
<强>更新强>
因为你想要两个引用:
var myVar = $(someOtherVar).clone(true, true);
var anotherVar = $(myVar).clone(true, true);;
如果您需要两个克隆,则必须克隆两次。没有办法解决它。