使用Masonry时,jQuery UI Sortable不起作用。任何想法如何避免这种冲突?任何帮助,将不胜感激。
最佳答案
我想我也有类似的问题。
我设法通过简单地回顾代码中的砖石来设置可排序元素来解决此问题。 (我不确定是否有更好的方法?)
$(function() {
$("#youritem").sortable({ opacity: 0.9, cursor: 'move', update: function() {
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$.post("dosomething.php", order, function(theResponse){
//you can see that i've re-called masonry once the sortable object has been moved
$('#youritem').masonry({columnWidth: 200, itemSelector: 'youritem' });
});
}
});
});
希望可以帮到您-如果我想知道另一种方法。
关于jquery - jQuery Masonry与jQuery UI Sortable冲突,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5141082/