这段代码在IE中淡出div。在Firefox3.0.8中,淡入淡出时间过后,div会立即消失。我找不到任何人提到这个问题。
$(function() {
$("#show").click(function() {
$("#show").fadeOut('slow');
});
});
<div id="show">this is where to show it</div>发布于 2009-04-14 16:14:04
我可以在Firefox 3.0.8和Windows XP上使用它。
Here is the sample page I tested it on.
https://stackoverflow.com/questions/748113
复制相似问题