💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 隐藏toggle-模块 ``` toggle的用法 : http://www.w3school.com.cn/jquery/effect_toggle.asp ``` ``` <!DOCTYPE html> <html lang="en"> <head>    <meta charset="UTF-8">    <meta name="viewport"          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> ​    <title>Title</title>    <style>        div{            width: 200px;            height: 200px;            background-color: red;       } ​    </style> </head> <body> ​ <button id="btn">来回切换隐藏</button> ​ <div class="box"></div> ​ <!--<script src="js/jquery-3.2.0.js"></script>--> <script src="js/zepto.min.js"></script> <script src="js/fx.js"></script> <script src="js/fx_methods.js"></script> ​ <script>    $(function () {        $('#btn').on('click',function () {            $('.box').toggle(1000);       })   }) </script> </body> </html> ```