1

谁能告诉我为什么这在 IE 中不起作用?

http://jsfiddle.net/GASxF/1/

$(function(){  // $(document).ready shorthand
  $('#tempoffline').fadeIn('slow');
});
4

3 回答 3

0

看来 Mooseman 是对的——但使用 jQuery 2.x。谢谢。

于 2013-07-03T14:24:22.763 回答
0

也许你想要那个:

$(function(){  // $(document).ready shorthand
  $('#tempoffline').delay(40000).fadeIn();
});

或者那个:

$(function(){  // $(document).ready shorthand
  $('#tempoffline').fadeIn(40000);
});
于 2013-07-03T14:09:42.637 回答
0

您可以在此处阅读有关 IE 中的淡入淡出问题 - http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/

但是滚动不会为您完成工作吗?

我看到的另一种可能的解决方法是:

$("#divToHide").hide().fadeIn(6000);

于 2013-07-03T14:06:18.777 回答