0

我有以下内容:

 $(".transparentLoad").animate({
        opacity : 1,
                },100,function() {
                $(".transparentLoad").each(function(){ alert("IE &");
                                               $(this).css("filter" , " ");
                                           });
                                  });

并且,

 $(".transparentLoad").animate({
        opacity : 1,
                },function() {
                $(".transparentLoad").each(function(){ alert("IE &");
                                               $(this).css("filter" , " ");
                                           });
                                  });

并且,

    $(".transparentLoad").animate({
            opacity : 1,
                    },{complete:function() {
                    $(".transparentLoad").each(function(){ alert("IE &");
                                                   $(this).css("filter" , " ");
                                               });
                                      }
});

但这一切都在 IE7 中给出了错误。我需要做的是,在动画完成后,我需要删除添加的过滤器 css 样式。

4

1 回答 1

1

你在这里有一个额外的逗号:

opacity : 1, // <----
于 2013-03-05T18:58:40.930 回答