JQuery UI 可排序/可拖动克隆不起作用
大家好,我正在使用 UI 进行一些拖放操作,问题是我无法启动“克隆”。
我有 2 个
列表,我想从列表 1 拖动到列表 2 好吧,这很容易,但是得到“克隆”保留在列表一中不是。我需要/想要发生的事情是从列表 1 拖动到列表 2(仅单向拖动),然后在列表 2 中接收时隐藏删除拖动的项目 - 好吧听起来很奇怪,但拖动项目的 ID 会根据该 ID 加载页面ID 到第二个
中创建的“空”
到目前为止,“我们”看起来像这样:
$('ul#inputs_menu li ul').sortable({
connectWith: "ul#layout_form",
}).disableSelection();
$('ul#inputs_menu li ul li').sortable({
helper: "clone"
}).disableSelection();
$(' ul#layout_form' ).sortable({
receive: function(event, ui) {
var new_item = (ui.item).attr('id');
$('ul#layout_form').append('<li><div id="'+new_item.substr(4)+'"class="'+new_item.substr(4)+' inputs radius_10" ></div></li>');
$('#'+new_item.substr(4)).load('includes/text.php?fld_name='+new_item.substr(4));
}
}).disableSelection();
请提出建议 - 谢谢
Hi folks am using UI fro some drag drop, problem is that I cannot get the "clone" to fire.
I have 2 <ul><li></li></ul>
lists and I want to drag from list 1 to list 2 OK that bit is easy, but getting the "clone" to remain in list one is not. What I need / want to happen is drag from list 1 to list 2 (one way drag only), then on receive in list 2 hide remove the dragged item - OK sounds strange but the ID of the dragged item loads a page based on that ID into the created "empty" <li>
in the 2nd <ul>
So far "we" looking something like this:
$('ul#inputs_menu li ul').sortable({
connectWith: "ul#layout_form",
}).disableSelection();
$('ul#inputs_menu li ul li').sortable({
helper: "clone"
}).disableSelection();
$(' ul#layout_form' ).sortable({
receive: function(event, ui) {
var new_item = (ui.item).attr('id');
$('ul#layout_form').append('<li><div id="'+new_item.substr(4)+'"class="'+new_item.substr(4)+' inputs radius_10" ></div></li>');
$('#'+new_item.substr(4)).load('includes/text.php?fld_name='+new_item.substr(4));
}
}).disableSelection();
Suggestions please - thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要这里的
ui.helper
,而不是原始的ui.item
,它是克隆版本。此外,您可以使用.appendTo()
< 来减少总体代码和选择器工作/a> 相反,像这样:Instead of
ui.item
which is the original, you wantui.helper
here, which is the clone. Also, you can cut down on overall code and selector work by using.appendTo()
instead, like this: