jQuery UI 可排序问题
我正在使用 jQuery UI 可排序小部件。一开始运行得很好。我必须从数据库动态填充小部件。现在,它仅在存在 id 为 1
的特定小部件的情况下工作。如果我删除那个特定的小部件,它就不再工作了。请帮助我。
I am using the jQuery UI sortable widget. It's working fine at first. I have to populate the widgets dynamically from a database. Now it's only working in the presence of one particular widget with id 1
. If I delete that particular widget, it is not working anymore. Help me please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您动态填充数据,则必须在添加数据后重新初始化它。jQuery 使用正则表达式来处理元素,因此当您更改 HTML 结构时,jQuery 无法识别任何新数据,请尝试重新调用可排序的数据每次ajax调用后的方法
If you are populating the data dynamically you have to re-initialize it after the data is added.jQuery uses regex to handle elements so when you change the HTML structure jQuery doesn't recognize any of the new data, try re-calling the sortable method after each ajax call