💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
jQuery点击显示和隐藏CSS ``` <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#but").click(function(){ if($(".exPara").css("display")=="none"){ $(".exPara").show(); }else{ $(".exPara").hide(); } }); }); </script> </head> <body> <button id="but" type="button">Click Me!</button> <div class="exPara" style="display:none"> 22222222 </div> </body> </html> ```