0

在 IE8 中打开这个网站(不确定 7) http://www.koffeebreak.info/

看看淡入的主 div 是如何让黑色伪影遍布它的?

我在另一个 StackOverflow 问题上找到了这个修复: Fading issues in Internet Explorer 7 when using jQuery

但是当我应用它时:

jQuery("#homepagewelcome").children().fadeTo('fast', 1, function(){
            document.getElementById("#homepagewelcomeContent").style.removeAttribute("filter"); 

            });

没发生什么事。有任何想法吗?

4

1 回答 1

1

尝试

$("#homepagewelcomeContent")[0].style.removeAttribute("filter");
于 2011-02-09T20:17:57.190 回答