JQ 列表滚动

function scroll_news(){
$(function(){
      $(
'#dvmq li').eq(0).fadeOut('slow',function(){        
         
//   alert($(this).clone().html());
         
//克隆:不用克隆的话,remove()就没了。
            $(this).clone().appendTo($(this).parent()).fadeIn('slow');
            $(
this).remove();
        });
     });
}
setInterval(
'scroll_news()',1000);

相关文章:

  • 2021-05-31
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-19
猜你喜欢
  • 2021-08-09
  • 2022-12-23
  • 2021-06-14
  • 2022-12-23
  • 2021-10-19
  • 2021-06-25
  • 2022-01-03
相关资源
相似解决方案