jquery ui的sortable拖动克隆问题
我要把A拖动到B,拖动完成后A中的元素不变以便完成多次复制拖动,请教大神们改怎么实现。$("#s2").sortable({connectWith:".c1",helpe...
我要把A拖动到B,拖动完成后A中的元素不变以便完成多次复制拖动,请教大神们改怎么实现。
$( "#s2" ).sortable({
connectWith: ".c1",
helper:'clone',
cursor:'move'
}).disableSelection();
这个helper:'clone',属性并没有发现有什么卵用 展开
$( "#s2" ).sortable({
connectWith: ".c1",
helper:'clone',
cursor:'move'
}).disableSelection();
这个helper:'clone',属性并没有发现有什么卵用 展开
2个回答
展开全部
也就是jquery-ui中的sortable插件和draggable创建一起使用。官方示例(右侧Examples中的“jQuery UI Draggable+Sortable”):http://jqueryui.com/draggable/#sortable。
<!doctype html><html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Draggable + Sortable</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <style> ul { list-style-type: none; margin: 0; padding: 0; margin-bottom: 10px; } li { margin: 5px; padding: 5px; width: 150px; } </style> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( "#sortable" ).sortable({ revert: true }); $( "#draggable" ).draggable({ connectToSortable: "#sortable", helper: "clone", revert: "invalid" }); $( "ul, li" ).disableSelection(); } ); </script></head><body> <ul> <li id="draggable" class="ui-state-highlight">Drag me down</li></ul> <ul id="sortable"> <li class="ui-state-default">Item 1</li> <li class="ui-state-default">Item 2</li> <li class="ui-state-default">Item 3</li> <li class="ui-state-default">Item 4</li> <li class="ui-state-default">Item 5</li></ul> </body></html>
展开全部
helper : String, Function : ‘original’
设置是否在拖拽元素时,显示一个辅助的元素。可选值:’original’, ‘clone’
初始:$(’.selector’).sortable({ helper: ‘clone’ });
获取:var helper = $(’.selector’).sortable(’option’, ‘helper’);
设置:$(’.selector’).sortable(’option’, ‘helper’, ‘clone’);
我也做程序,可以发私信交个朋友
设置是否在拖拽元素时,显示一个辅助的元素。可选值:’original’, ‘clone’
初始:$(’.selector’).sortable({ helper: ‘clone’ });
获取:var helper = $(’.selector’).sortable(’option’, ‘helper’);
设置:$(’.selector’).sortable(’option’, ‘helper’, ‘clone’);
我也做程序,可以发私信交个朋友
更多追问追答
追问
我也看到这个了 但是好像helper这个属性没什么用啊
追答
有哈
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询