我的脚本有点卡在这里:
它是一个过滤所有.notme
图像并隐藏它的列表项的复选框。问题是现在我无法为fadeToggle
. 它的行为应该是这样的:
如果所有的孩子
#list-team-single-container
都“没有显示” - 做点什么。
$('#show-only-my-teams').change(function(){
$('.notme').each(function(){
$(this).parent().parent().fadeToggle('fast', function(){
});
});
});