我的问题似乎与这个问题相似:
dragging from a sortable list to a drag and drop plugin
但由于没有给出答案,我想知道是否有人能够/能够与我一起解决这个问题。我遇到的问题是我创建了一个可拖动的div并将其附加到一个可以排序的div中。当我指定任何这样的参数时:
$(el).sortable({ ... arguments ... });
当元素被删除时会导致错误,如下所示,当留空时它奇怪地工作正常并且没有问题。该错误还会阻止可拖动元素触发任何函数。
Uncaught TypeError: Cannot read property 'options' of undefined
jquery-ui-1.10.3.custom.js:2204
$.ui.plugin.add.stop jquery-ui-1.10.3.custom.js:2204
$.extend.plugin.call jquery-ui-1.10.3.custom.js:284
$.widget._trigger jquery-ui-1.10.3.custom.js:2017
(anonymous function) jquery-ui-1.10.3.custom.js:401
$.widget._mouseStop jquery-ui-1.10.3.custom.js:1702
(anonymous function) jquery-ui-1.10.3.custom.js:401
$.widget._mouseUp jquery-ui-1.10.3.custom.js:957
(anonymous function) jquery-ui-1.10.3.custom.js:401
$.widget._mouseUp jquery-ui-1.10.3.custom.js:1721
(anonymous function) jquery-ui-1.10.3.custom.js:401
$.widget._mouseDown._mouseUpDelegate jquery-ui-1.10.3.custom.js:913
jQuery.event.dispatch jquery-1.10.2.js:5095
jQuery.event.add.elemData.handle jquery-1.10.2.js:4766
这是出错的代码:
$.ui.plugin.add("draggable", "cursor", {
start: function() {
var t = $("body"), o = $(this).data("ui-draggable").options;
if (t.css("cursor")) {
o._cursor = t.css("cursor");
}
t.css("cursor", o.cursor);
},
stop: function() {
var o = $(this).data("ui-draggable").options;
if (o._cursor) {
$("body").css("cursor", o._cursor);
}
}
});
var o = $(this).data("ui-draggable").options;
$(this).data()
仅包含:Object {id:“c17”}
示例代码:
$('.draggable').draggable({
connectToSortable: '.sortable',
drop: function(){
console.log('Element dropped');
}
});
$('.sortable').sortable({
update: function(){
console.log('sortable updated');
}
});
JSBin示例:http://jsbin.com/eHUKuCoL/9/edit?html,js,output 希望有人能够告诉我问题是什么以及解决问题的方法是什么。
答案 0 :(得分:7)
根据文档Jquery UI Draggable Documentation,您需要将helper参数设置为“clone”,以使connectWithSortable功能完美运行。
一旦我这样做了,就停止了抛出错误。
另外一个注意事项,draggable在其文档中没有'drop'方法,所以你可能必须包含droppable插件,如果这就是你想要的。
最后,如果你必须使用clone作为帮助方法,你可能需要添加一些css以使其运行更顺畅。
干杯。
答案 1 :(得分:1)
使用Meteor构建高度动态的应用时,我也遇到了这个问题。事实证明,如果您删除原始拖动项目(或者没有克隆它),您将收到此错误。这在不同版本的jQuery中多次出现,但现在终于在v1.11.0中修复了: