jquery Draggable 函数被调用两次

发布于 2024-11-18 21:01:46 字数 631 浏览 3 评论 0原文

这个函数被调用两次的原因是什么?基本上,如果容器在另一个方向移动得太远,脚本应该将容器向右移动 100px。

<script type="text/javascript"> 
$(document).ready(function() {
  $( "#container" ).draggable({axis: "x", drag: function() {
      if($(this).offset().left < -100) {
        $(this).data('draggable').offset.click.left -= 100;
      }
    }
  });
});
</script>

<div id="container">
  <div class="item">1</div>
  <div class="item">2</div>
  <div class="item">3</div>
  <div class="item">4</div>
</div>

我为此使用 jquery-latest.min 和 jquery-ui-1.8.14 (核心、小部件、鼠标、可拖动)。

Any reason why this function gets called twice? Basically the script should move the container 100px to the right if it moves too far in the other direction.

<script type="text/javascript"> 
$(document).ready(function() {
  $( "#container" ).draggable({axis: "x", drag: function() {
      if($(this).offset().left < -100) {
        $(this).data('draggable').offset.click.left -= 100;
      }
    }
  });
});
</script>

<div id="container">
  <div class="item">1</div>
  <div class="item">2</div>
  <div class="item">3</div>
  <div class="item">4</div>
</div>

I use jquery-latest.min and jquery-ui-1.8.14 (core, widget, mouse, draggable) for this.

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

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

发布评论

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

评论(1

倾听心声的旋律 2024-11-25 21:01:46

每次拖动容器移动时都会调用拖动事件。在浏览器第一次从您的回调中重绘该事件之前,该事件可能会触发多次。

您可以使用 constrain 选项将 div 限制在容器内,和/或使用 revert 选项在对象超出容器时恢复对象。

The drag event gets called every time the drag container moves. The event could trigger several times before the browser can redraw it the first time from your call back.

You could use the constrain option to constrain the div within a container, and/or the revert option to revert the object if it goes outside the container.

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