我对这段代码有疑问:
$('#portfolio-filter a').click(function(){
//Some conditions here to add my class 'thumbnail-view' to some div
$('#portfolio-list').find('.project').addClass('thumbnail-view');
});
$(".thumbnail-view").each(function(j){
$(this).click(function(){
alert(j);
});
});
每次单击 div id 投资组合过滤器中的链接时,我都会在特定元素上添加类缩略图视图。当我加载页面时,我的每个功能都可以正常工作,但是由于第一个功能,它没有考虑到变化。每次单击 #portfolio-filter 中的链接时是否需要刷新每个功能?我怎样才能做到这一点 ?谢谢 !