jQuery 可拖动拖动事件中有什么方法可以覆盖顶部/左侧位置吗?

发布于 2024-11-15 13:03:38 字数 99 浏览 3 评论 0原文

我试图做的是强制执行我自己的边界,因为可拖动扩展没有我需要的相同类型的边界逻辑。因此,我试图找到一种方法来覆盖被拖动对象的顶部/左侧位置(如果它超出了我强制执行的边界)。有什么想法吗?

What I am attempting to do is enforce my own boundaries since the draggable extension doesnt have the same sort of boundary logic that I need. So i am trying to find a way to override the top/left position of the object being dragged if it goes outside of the bounds I enforce. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

献世佛 2024-11-22 13:03:38
$(this).draggable({
  drag: function(event, ui) {
    if(ui.position.top>0) { ui.position.top = 0; }
    if(ui.position.left>0) { ui.position.left = 0; }
  }
});
$(this).draggable({
  drag: function(event, ui) {
    if(ui.position.top>0) { ui.position.top = 0; }
    if(ui.position.left>0) { ui.position.left = 0; }
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文