jQuery UI 可排序防止在放置时执行
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在物品被掉落时向其添加一个类别,并在后续掉落时检查该类别应该可行。像这样的东西:
Adding a class to the item when it is dropped and checking for that class on subsequent drops should work. Something like: