jQuery sortable - 仅在拖动时启用排序,而不是单击

发布于 2024-11-29 21:05:57 字数 337 浏览 1 评论 0原文

我有一堆启用了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能否归途做我良人 2024-12-06 21:05:57

您可以将此属性添加

distance: 15

到可排序对象中,以便用户必须将其拖动 15 像素才能激活可排序行为。

You can add this property

distance: 15

to your sortable object so that the user has to drag it 15 pixels before it will activate the sortable behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文