我正在使用vg.vgrefresh();
附带的vgrid插件来刷新磁贴的位置。我试图在这个函数中运行它,但没有成功:
hideComments: function()
{
this.$commentsCont.slideUp('fast');
vg.vgrefresh();
}
不知何故它可以正常工作,但它没有正确刷新位置,我最好的猜测是我需要与this.$commentsCont.slideUp('fast');
一起运行它有没有办法打破这段代码并用vg.vgrefresh();
运行它?我迷路了。
答案 0 :(得分:2)
如果你想在 slideUp完成后调用此函数,那么:
hideComments: function()
{
this.$commentsCont.slideUp('fast', function() {
vg.vgrefresh();
});
}
有关详细信息,请参阅slideUp docs