Cycle through divs?

后端 未结 2 644
旧巷少年郎
旧巷少年郎 2021-01-07 06:08

I have this HTML:

first box
second box
2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-07 06:26

    $('a').click(function(){
        $('.boxes').filter(':visible').hide().next().add('.boxes:first').last().show();
    });
    

提交回复
热议问题