美文网首页
2018-12-14jQuery 效果 - toggle() 方

2018-12-14jQuery 效果 - toggle() 方

作者: 妖怪在流浪 | 来源:发表于2018-12-14 10:39 被阅读4次

    今天做log.png图标点击进行显示和隐藏功能。发现jQuery之强大。

    <html>
    <head>
    <script type="text/javascript" src="/jquery/jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $(".btn1").click(function(){
      $("p").toggle();
      });
    });
    </script>
    </head>
    <body>
    <p>This is a paragraph.</p>
    <button class="btn1">Toggle</button>
    </body>
    </html>
    
    Animation.gif

    引用来自http://www.w3school.com.cn/jquery/effect_toggle.asp

    相关文章

      网友评论

          本文标题:2018-12-14jQuery 效果 - toggle() 方

          本文链接:https://www.haomeiwen.com/subject/yguwhqtx.html