2

我正在修改 IE8 的引导轮播支持。这适用于chrome和FF,但不适用于IE 8,它会改变而不会淡入。有谁知道为什么?

<style>
  .carousel .activerow {display: none;} 
  .carousel .row { left: 0; opacity: 1; }
  </style>

  /*I have many rows of data in the dom
   They are not visible until'active' class 
   is added.

   This code is binded to a link
  */
  var activeset = $active; //contains the contents of current row
  var nextset = $next;    //contains contents of the next 

  $active.fadeOut('slow', function () {            
      activeset.removeClass('activerow');
      nextset.addClass('active');
      nextset.fadeIn('slow');          

    });
4

1 回答 1

1

我认为你有一个类型-o。

$active.fadeOut(....

可能需要

$(active).fadeOut(....

编辑:在我发布这个之前没有想到。

由于您正在缓存元素,您确定您的选择器正在返回匹配项吗?

于 2012-04-20T17:15:20.440 回答