jQuery UI - 通过手风琴连接列表
请参阅以下小提琴: http://jsfiddle.net/CK9uL/134/
我可以拖动项目从右侧到左侧的标题,并将它们排序在每个标题下。
我现在尝试在标题之间拖动项目。
我尝试过以下代码:
$(function() { $("#droppable ul").sortable({ connectWith: $('.connectWith') }).disableSelection(); });
但列表似乎没有连接。有什么想法吗?
Please see the following fiddle: http://jsfiddle.net/CK9uL/134/
I can drag items from the right to the headers on the left and sort them under each header.
I'm now trying to drag items between headers.
I have tried the following code:
$(function() { $("#droppable ul").sortable({ connectWith: $('.connectWith') }).disableSelection(); });
But the lists don't seem to be connecting. Any ideas?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 文档,
connectWith
属性采用选择器,而不是 jQuery目的。假设您有其他带有connectWith
类的可排序项,则以下内容应该有效:According to the documentation, the
connectWith
property takes a selector, not a jQuery object. Assuming you have other sortables with theconnectWith
class, the following should work: