在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");
});
什么都没发生。有什么想法吗?
答案 0 :(得分:1)
尝试
$("#homepagewelcomeContent")[0].style.removeAttribute("filter");