IE 和 Jquery 淡入淡出问题时的伪像
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try