jQuery 中的浅拷贝?
我认为 jQuery .clone()
会进行深层复制,并且两个对象独立演化。但是,是否有可能进行浅复制,即两个对象共享相同的属性和方法,以便每当一个对象发生变化时另一个对象也会发生变化?
I think jQuery .clone()
does a deep copy and both objects evolve independently. But is it possible to do a shallow copy in the sense that both objects share the same properties and methods so that whenever one changes the other does as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于您的评论,仅通过克隆(或其他方式)元素是不可能实现这一点的。您必须自己设置事件处理程序并管理同步。
With respect to your comment, this is not possible by just cloning (or whatever) the elements. You would have to set up event handlers and manage the synchronization yourself.