我有一个使用onRender方法的牵线木偶CompositeView:
onRender: function () {
this.$el.droppable({
hoverClass: "ui-state-hover",
drop: function (event, ui) {
MyApp.vent.trigger("add:products");
});
}
css样式定义为:
.ui-state-hover {
background: green !important;
}
当选择被拖动到该元素上时,droppable元素应该变为绿色。这在我的申请中没有发生。
我确实有一个小提琴可以使用,但不知道为什么它在我的应用程序中不起作用。
答案 0 :(得分:0)
尝试改变:
$(this).ready(function(){
为:
$(document).ready(function(){
自$(this)
jsFiddle
$(document)
引用{{1}}后的第一行,但可能不在您的申请中。