jQuery 的可拖动插件
当拖动一个元素时,draggable 插件可以防止它溢出其他可拖动元素吗?换句话说,当它到达另一个可拖动元素的边缘时,它可以停止拖动该元素吗?
When dragging an element can the draggable plugin prevent it from overflowing the other draggable elements? In other words, can it stop dragging the element when it reaches the edge of the other draggable element?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将拖动包含在父元素中 - 如果将所有可拖动元素包含在一个元素中并将其设置为包含,则它们将无法拖动到超出该元素的范围。
(来自 http://jqueryui.com/demos/draggable/)
You can contain the dragging within a parent element - if you contain all of the draggables within one element and set that as the containment, they will not be able to be dragged beyond that.
(from http://jqueryui.com/demos/draggable/)
经验:
Exp: