💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
![](https://box.kancloud.cn/84ec9d99c9bb651392f25ebf72a95a0b_149x73.png) ![](https://box.kancloud.cn/32e61ed44fe7a0104b6d7396365e39a6_87x44.png) ~~~ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script type="text/javascript" src="js/jquery-1.11.1.js"></script> <script> $(function () { var bBtn = true; $('input').click(function () { if(bBtn){ $('div').hide();// 隐藏 }else{ $('div').show();// 显示 } bBtn = !bBtn; }) }) </script> </head> <body> <input type="button" value="点击"> <div>div</div> </body> </html> ~~~ *** #### 模拟点击菜单 ![](https://box.kancloud.cn/10620e4a8b7dc4d572cbab079180dbde_209x144.png) ~~~ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> ul{ display: none; } .box{ display: block; } </style> <script type="text/javascript" src="js/jquery-1.11.1.js"></script> <script> $(function () { $('input').click(function () { $('ul').toggleClass('box'); }) }) </script> </head> <body> <input type="button" value="点击"> <ul> <li>1111</li> <li>2222</li> <li>3333</li> <li>4444</li> </ul> </body> </html> ~~~