我有一个带有两个主干视图的仪表板。一个视图包含各种拖放区域,另一个视图包含draggable="true"
项。但是,这些放置区域不会在drop
个事件上触发,但它们会在dragenter
和dragleave
上触发。为什么掉落事件没有解雇?
注意:正在呈现的模板包含.item-drop-zone
div元素
包含投放区的视图:
Shopperater.Views.ModuleMedleyView = Backbone.View.extend({
tagName: "div",
className: "row",
template: JST['modules/medley'],
initialize: function() {
_.bindAll(this);
},
events: {
'dragenter .item-drop-zone' : 'highlightDropZone',
'dragleave .item-drop-zone' : 'unhighlightDropZone',
'drop .item-drop-zone' : 'dropTest'
},
dropTest: function(e) {
console.log("dropped!")
},
highlightDropZone: function(e) {
e.preventDefault();
$(e.currentTarget).addClass('item-drop-zone-highlight')
},
unhighlightDropZone: function(e) {
$(e.currentTarget).removeClass('item-drop-zone-highlight')
},
render: function () {
this.$el.html(this.template({ }));
return this;
}
});
答案 0 :(得分:6)
您必须告诉浏览器该元素是放置目标:
events: {
'dragenter .item-drop-zone' : 'highlightDropZone',
'dragleave .item-drop-zone' : 'unhighlightDropZone',
'drop .item-drop-zone' : 'dropTest',
'dragover .item-drop-zone': function(ev) {
ev.preventDefault();
}
}
有关放置目标的详细信息,请参阅https://developer.mozilla.org/en-US/docs/DragDrop/Drag_Operations#droptargets。您需要dragenter
和dragover
个事件。由于您已经在使用dragenter
,因此您只需添加dragover
。
从链接
在
preventDefault
和dragenter
期间调用dragover
方法 事件将表明该位置允许drop
。