如何阻止 Div 移出边框 Jquery Draggable();
如何阻止 div 移出边框 div
这是我到目前为止得到的代码。
<script>
$(document).ready(function() {
$("#draggable").draggable({ grid: [50, 20] });
});
</script>
<div id="drag_border">
<div id="draggable" style="width:500; height:800">Drag me</div>
</div>
谢谢你,
How to stop the div from moving out of the border div
Here is the code i got so far.
<script>
$(document).ready(function() {
$("#draggable").draggable({ grid: [50, 20] });
});
</script>
<div id="drag_border">
<div id="draggable" style="width:500; height:800">Drag me</div>
</div>
Thank you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
遏制
。例如编辑:
这是示例。
请记住,您使用的是网格,因此除非您计算框的宽度和高度以匹配该网格,否则您将无法到达边缘。
You need to use
containment
. E.g.Edit:
Here's an example.
Remember, you're using a grid, so you won't reach the edges unless you calculate the width and height of your box to match that grid.