我有'n'按钮
我需要
$('BUTTON').fadeOut();
...但我希望看到一个按钮一次消失..
如何 ?
我尝试使用下一个,但以下方式 ALL 瞬间消失
$(".genresButton").first().fadeOut().next().fadeOut() ;
我尝试使用fadeOut 来fadeOut 下一个,但我对按钮总数一无所知。
我尝试使用 $.each() 但没有成功
编辑:
这是我选择的工作解决方案:
$("body").on('click', '.genresButton', function(event) {
$(".genresButton").not($(this)).each(function(index){
$(this).delay(index * 500).fadeOut(450);
});
});