IE 和 Jquery 淡入淡出问题时的伪像

发布于 2024-10-16 19:44:13 字数 598 浏览 2 评论 0原文

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

查看淡入的主 div 如何获得所有黑色伪影超过它?

我在另一个 StackOverflow 问题上找到了这个修复: 使用 jQuery 时 Internet Explorer 7 中的淡入淡出问题

当我应用它时:

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

            });

什么也没有发生。有什么想法吗?

Open this site in IE8 (not sure about 7)
http://www.koffeebreak.info/

See how the main div that fades in gets the black artifacts all over it?

I found this fix on another StackOverflow question:
Fading issues in Internet Explorer 7 when using jQuery

But when I applied it:

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

            });

Nothing happens. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

油饼 2024-10-23 19:44:13

尝试

$("#homepagewelcomeContent")[0].style.removeAttribute("filter");

Try

$("#homepagewelcomeContent")[0].style.removeAttribute("filter");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文