jQuery hide show div在Internet Explorer中不起作用

前端之家收集整理的这篇文章主要介绍了jQuery hide show div在Internet Explorer中不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我单击togglediv时,commentdiv必须是可见的或隐藏的.以下代码在Firefox上运行,但不在Internet Explorer上运行:
$(document).ready(function(){
    $("#togglediv").click(function(){ 
        if( $("#commentdiv").is(":visible") ) {
            $("#commentdiv").hide("slow");
            $("#togglediv").text("show");
        } else {
            $("#commentdiv").show("slow");
            $("#togglediv").text("hide");
        }
    });
});

解决方法

我会尝试:
$(document).ready(function() {
  $("#togglediv").click(function() {
    // note: do this first because the :hidden test fails if you
    // do it after triggering a slow animation
    $("#togglediv").text($("#commentdiv").is(":hidden") ? "Hide" : "Sgiw");
    $("#commentdiv").toggle('slow');
  });
});

编辑:为了回应你的评论,这个例子在IE7 / FF3中对我来说非常适合.注意:使用慢效果时,我确实必须颠倒语句的顺序.有趣!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
  <title>Test</title>
  <style type="text/css">
    #togglediv { padding: 5px; background-color: yellow; }
    #commentdiv { padding: 5px; background-color: #CCC; height: 100px; }
  </style>
</head>
<body>
  <div id="togglediv">Hide</div>
  <div id="commentdiv">thanks for answer. but i have tried this code,it was okay. i want to use toggle("slow") effect. this effect is runing firefox,but not i.e. is it a bug?</div>
  <script type="text/javascript" src="jquery-1.3.1.js"></script>
  <script type="text/javascript">
  $(function() {
    $("#togglediv").click(function() {
      $("#togglediv").text($("#commentdiv").is(":hidden") ? "Hide" : "Show");
      $("#commentdiv").toggle('slow');
    });
  });
  </script>
</body>
</html>
原文链接:https://www.f2er.com/jquery/180538.html

猜你在找的jQuery相关文章