1

我有这个代码:

<script>
(function ($) {
    $(document).ready(function () {
        $("#thisclick, #thisclick2").click(function () {
            if ($('.example').is(":hidden")) {
                $(this).html($(this).html().replace(/Hide/, 'Show'));
            } else {
                $(this).html($(this).html().replace(/Show/, 'Hide'));
            }
            // Do it afterwards as the operation is async
            $(".example").hide();
        });
    });
})(jQuery);
</script>

当前代码的工作方式是,如果#thisclick单击它会隐藏#example。这是我需要的,但是当#thisclick再次单击时我希望它显示#example。使用上面的代码,它不会工作。我必须做什么才能实现这一目标?

4

4 回答 4

4

您应该能够将代码更改为如下所示以使其正常工作:

(function ($) {
    $(document).ready(function() {
    $("#thisclick").click(function () {
        $("#example").slideToggle("slow");
        });
    });
})(jQuery);

这是一个快速示例的链接:http: //jsfiddle.net/andyjmeyers/szmXp/

于 2013-04-01T12:36:44.200 回答
1

你期待像

<button>This click</button>
<p style="display: none">Example</p>

<script>
$("button").click(function () {
$("p").toggle();
});
</script>

请在http://jsfiddle.net/X5r8r/1107/上查看

于 2013-04-01T12:40:35.480 回答
0
<script>
    (function ($) {
          $(document).ready(function() {
          $("#thisclick").click(function () {
             if ($('#example').is(":hidden")) {
                 $(this).html($(this).html().replace(/Hide/, 'Show'));

             } else {
                 $(this).html($(this).html().replace(/Show/, 'Hide'));
             }
             // Do it afterwards as the operation is async
             $("#thisclick").slideToggle("slow");
             if($("#example").attr("isHidden") == "1")
                  $("#example").slideToggle("slow");
             $("#example").attr("isHidden","1");
          });
      });
        })(jQuery);
        </script>
于 2013-04-01T12:31:02.130 回答
0

你可以这样做:

$("#thisclick").click(function () {
   if ($('#example').hasClass("hidden"))
   {
      $('#example').removeClass("hidden");
      $('#example').show();
   }
   else
   {
      $('#example').addClass("hidden");
   }
}

或更容易:

$("#thisclick").click(function () {
   $('#example').toggleClass("hidden");
}

定义风格”:

.hidden
 { display:none;}
于 2013-04-01T12:33:22.230 回答