我只想知道在哪里可以放置一些功能。我尝试使用警报消息来了解事件发生的位置,但它没有执行任何警报框。我把警报框放在评论中,这些是我以前放置的地方,但没有任何反应。我的拖放工作,但它不能消防警报框。我不知道出了什么问题。帮我。感谢。
android.support.v7.app.AppCompatViewInflater
答案 0 :(得分:0)
这对我来说很完美。希望它能帮助那些挣扎的人:)
$("#container1, #container2").sortable(
{
group: 'ol.simple_with_animation',
onDrop: function ($item, container, _super) {
var $clonedItem = $('<li/>').css({ height: 0 });
$item.before($clonedItem);
$clonedItem.animate({ 'height': $item.height() });
$item.animate($clonedItem.position(), function () {
$clonedItem.detach();
_super($item, container);
});
alert('oink');
}
});