我正在使用jquery拖放选择来拾取表格中的选定单元格。然而,拖动选择可以在整个网络上完成。是否有代码或方法可以限制拖动到特定空间或DIV
任何示例代码或建议分享
非常感谢
答案 0 :(得分:0)
喜欢这个
$(function() {
$( "#draggable" ).draggable();
});

#draggable, #notdraggable { width: 150px; height: 50px; padding: 0.5em; }

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>
<div id="notdraggable" class="ui-widget-content">
<p>Cant Drag me around</p>
</div>
&#13;