(function(){

  var tit = $("#changes"),

      con = $("#wday>ul"),

      page = con.length,
        index = 0;

      tit.click(function(){
            if(index < page){
                index++;
            }else{
                index = 0;
            }
          con.eq(index).show().siblings().hide();
      });


})();

 

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2021-07-13
  • 2022-02-09
  • 2021-08-30
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案