Jquery UI Sortable - 设置项目选项
伙计们! 我有一个问题。我需要用项目 'li:not(.someclass)' 初始化我的 sortable() 。 如果我设置:
$('ul').sortable({ items: 'li:not(.someclass)' });
一切正常。但如果我尝试:
$('ul').sortable().sortable('option', 'items', 'li:not(.someclass)');
它不起作用。如果选项“items”无法正常工作,为什么存在,或者通过选项设置项目的正确方法是什么?
请尝试此处的示例。
guys!
I have a problem. I need to initialize my sortable() with items 'li:not(.someclass)'.
If I set:
$('ul').sortable({ items: 'li:not(.someclass)' });
everything works fine. But if I try:
$('ul').sortable().sortable('option', 'items', 'li:not(.someclass)');
It doesn't work. Why option 'items' exists if it doesn't work correctly or what is correct way to set up items through options?
Try examples here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用取消(无法使项目正常工作) - 演示
You can use cancel (Couldn't get items working) - Demo