jquery Draggable 函数被调用两次
这个函数被调用两次的原因是什么?基本上,如果容器在另一个方向移动得太远,脚本应该将容器向右移动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次拖动容器移动时都会调用拖动事件。在浏览器第一次从您的回调中重绘该事件之前,该事件可能会触发多次。
您可以使用 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.