jQuery UI 可排序防止在放置时执行

发布于 2025-01-05 10:23:09 字数 228 浏览 0 评论 0原文

我正在使用 jQuery UI 库中的可排序小部件并注意到一些事情。如果我排序/放置一个可拖动的项目,例如包含警报('运行一次')等脚本的div。每次被删除时它都会执行 javascript 代码。我知道这很有意义,因为它每次都会将其写入 DOM。但现在我想知道是否有人知道解决这个问题的方法。我倾向于对所有包含 javascript 的 div(portlet)进行排序,这些 javascript 不应运行多次:)

谢谢。

I am using sortable widgets from the jQuery UI library and noticed something. If I sort/drop a draggable item like a div containing a script like alert('run once'). It will execute the javascript code every time it gets dropped. I understand that this pretty much makes sense since it writes it to the DOM each time. But now i'm wondering if anyone knows a way around this. The div's (portlets) i tend to sort all contain javascript which shouldn't be run more than once :)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北城挽邺 2025-01-12 10:23:09

在物品被掉落时向其添加一个类别,并在后续掉落时检查该类别应该可行。像这样的东西:

$('#element').bind('onDrop', function () {
    if (!$(this).hasClass('dropped')) { // if the element hasn't been dropped before
        $(this).addClass('dropped'); // add the dropped class
        alert('run once');
    }
});

Adding a class to the item when it is dropped and checking for that class on subsequent drops should work. Something like:

$('#element').bind('onDrop', function () {
    if (!$(this).hasClass('dropped')) { // if the element hasn't been dropped before
        $(this).addClass('dropped'); // add the dropped class
        alert('run once');
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文