这是我现在的代码:
jQuery(document).ready(function($) {
$("div#main").hide();
$("div#footer").hide();
setTimeout(function () { $("div#main").fadeIn("slow"); }, 2000);
setTimeout(function () { $("div#footer").fadeIn("slow"); }, 2000);
});
这是网站: http ://thecodefixer.com/tatmuda/blog/
请在ie8中查看,看看会发生什么
我需要先查看背景图像,然后主要内容方块和页脚会淡入淡出……(就像在 Firefox 和 chrome 中一样……效果很好)
有人知道如何在ie8中解决这个问题吗?