我有一个带有两个主干视图的仪表板。一个视图包含各种拖放区,另一个包含draggable="true"
. 但是,这些拖放区不会在drop
事件上触发,而是在dragenter
和上触发dragleave
。为什么 drop 事件没有触发?
注意:正在呈现的模板包含.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;
}
});