我有以下内容:
$(".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 样式。