我有一个位置绝对div的序列,说

<div>...</div>
<div style="display:none">...</div>
<div style="display:none">...</div>
<div style="display:none">...</div>

我使用 jQuery 编写了一个简单的幻灯片代码
currentDiv.fadeOut('slow');
nextDiv.fadeIn('slow');

它在 FF/Chrome/Safari/IE7/IE8 中完美运行,但不适用于 IE6。我发现在IE6中,fadeOut和fadeIn不像其他浏览器那样同时发生,fadeIn总是在fadeOut完成后开始。有任何想法吗?

最佳答案

我刚刚尝试了这个例子,在 IE6 中,fadeIn 和fadeOut 同时工作:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>

  <script>
    $(document).ready(function(){

      $(document.body).click(function () {
        $("div#one").fadeOut("slow");
        $("div#two").fadeIn("slow");

      });

    });
</script>
<style>
  span { color:red; cursor:pointer; }
  div { margin:3px; width:80px; display:none;
    height:80px; float:left; }
  div#one { background:#f00; display:block;}
  div#two { background:#0f0; }
  div#three { background:#00f; }
</style>
</head>
<body>
<span>Click here...</span>
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</body>
</html>

我修改了示例:http://docs.jquery.com/Effects/animate#paramsoptions

我之前注意到在实际 div 中而不是在 css 文件中或通过 jquery 将样式设置为 none 有时会导致问题。尝试只给每个 div 一个 displaynone 类,而不是设置它们的样式标签。希望这会有所帮助并祝你好运!

关于javascript - JQuery - IE6 - 如何同时淡出和淡入?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2055551/

10-13 04:16