有什么方法可以让 jQueryUI 可排序以克隆 alt 或 ctrl 上的项目并且没有它就不要克隆?我做了这个
$(this).sortable({
activate: function(event, ui) {
if (event.altKey) {
ui.item.before(ui.item.clone().removeAttr('style'));
}
},
stop: function(event, ui) {
...
},
receive: function(event, ui) {
...
},
});
也许有更好的方法使用.sortable( "option", "helper", "clone" );
?