使用 jQuery 克隆 HTMLElements 奇怪地失败
我在使用 jQuery 和 .clone(true, true)
时遇到问题。看看这个 jsFiddle。
问题是:当我克隆一个对象时(使用 .clone(true, true)
-- deep: data and events),事件有效,但将所有函数应用于原始对象(模型对象) )。
阅读代码一切都会清楚。
再见,感谢您的帮助:)
I'm having a problem with jQuery and .clone(true, true)
. Take a look on this jsFiddle.
The problem is: when I clone an object (using .clone(true, true)
-- deep: data and events), the events works, but apply all functions on the original object (the model object).
All will be clear on read the code.
Bye and thanks for any help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信问题是您对
exampleVariable = $(this)
的广泛使用。当您使用该变量而不是显式使用
$(this)
时,您就不会使用当前的$(this)
(如果这有意义的话)。我做了一些更改:(在这里小提琴:http://jsfiddle.net/PGM6W/)
I believe the problem is your extensive use of
exampleVariable = $(this)
.When you use the variable instead of explicitly using
$(this)
, you're not using the current$(this)
if that makes any sense.I've made some changes: (fiddle here: http://jsfiddle.net/PGM6W/)