jQuery sortable - 仅在拖动时启用排序,而不是单击
我有一堆启用了 jQuery 可排序(如网格)的 div。这一切都工作正常,但我只想在用户拖动 div 时启用可排序 - 而不是在他单击它时启用。例如,这些 div 有滚动条,每当您拖动手柄时,它会将 div 绑定到鼠标并强制您对其进行排序。我该如何关闭此功能?
这是我的 jQuery:
$( "#sortable" ).sortable({ items: 'li:not(.ui-tabs-nav-item,#newspod,#imglist li)', containment: '#sortable'})
$( "#sortable" ).disableSelection();
I have a bunch of divs which have jQuery sortable (as grid) enabled. This is all working fine, but I want to only have sortable enabled when a user drags the div - not when he clicks it. For example, these divs have scrollbars, and whenever you drag the handle, it binds the div to the mouse and forces you to sort it. How do I turn this off?
Here's my jQuery:
$( "#sortable" ).sortable({ items: 'li:not(.ui-tabs-nav-item,#newspod,#imglist li)', containment: '#sortable'})
$( "#sortable" ).disableSelection();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将此属性添加
到可排序对象中,以便用户必须将其拖动 15 像素才能激活可排序行为。
You can add this property
to your sortable object so that the user has to drag it 15 pixels before it will activate the sortable behavior.