Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Bootstrap 缩略图功能来显示媒体网格。该页面允许删除某些项目,我使用 jQuery remove() 方法处理删除。我有点希望引导程序可以重新布局缩略图,但它不会发生:(,所以我在媒体网格中有一些“洞”。
有没有办法刷新缩略图以重新布局它们自己?我不是要花哨的滑动动画,只是刷新就可以了。
确保从缩略图网格中删除整个 LI 元素,例如:
$('.close').click(function(){ $(this).parents('li').remove(); })
工作演示:http ://bootply.com/66728