使用 jQuery 克隆 HTMLElements 奇怪地失败

发布于 2024-11-15 09:50:02 字数 299 浏览 2 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙幽之幻 2024-11-22 09:50:02

我相信问题是您对 exampleVariable = $(this) 的广泛使用。

当您使用该变量而不是显式使用 $(this) 时,您就不会使用当前的 $(this)(如果这有意义的话)。

我做了一些更改:(在这里小提琴:http://jsfiddle.net/PGM6W/

        // On click on more, append a new model
        // Will update table buttons too
        // THIS WORKS FINE, except if I click on remove and click on this two times (try it)
        selfRow.find('a.more').click(function(){
            $(this).parents("table").append(model.clone(true, true));
            updateModel(selfTable);
        });

        // On click on remove, will remove current row
        // Will update table buttons too
        // THIS NOT WORKS FINE, and broke the a.more event!
        selfRow.find('a.remove').click(function(){
            $(this).remove();
            updateModel(selfTable);
        });

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/)

        // On click on more, append a new model
        // Will update table buttons too
        // THIS WORKS FINE, except if I click on remove and click on this two times (try it)
        selfRow.find('a.more').click(function(){
            $(this).parents("table").append(model.clone(true, true));
            updateModel(selfTable);
        });

        // On click on remove, will remove current row
        // Will update table buttons too
        // THIS NOT WORKS FINE, and broke the a.more event!
        selfRow.find('a.remove').click(function(){
            $(this).remove();
            updateModel(selfTable);
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文