如何在砌体中删除特定类或ID的某些元素或元素?

时间:2014-02-04 07:44:26

标签: jquery-masonry

使用此语法加载砌体项目:

var msnry = new Masonry( "#container-div",
{
    columnWidth: 300,
    gutter: 10,
    isFitWidth: true,
    isAnimates: true,
    itemSelector: '.items',
    animationOptions:
    {
        duration: 600
    }
});

点击按钮或链接后,我需要移除.sample#sample的某些项目,此语法不起作用。

msnry.remove('.sample');

如何解决?

1 个答案:

答案 0 :(得分:0)

要使用特定选择器删除砌块,请使用此

var remove=$('.sample'); // Use your removal class or ID here
msnry.remove(remove); // Attempting removal of the occurrences
msnry.reloadItems(); // Reload the layout