<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>jq之demo</title><!--线上jq库--><script src="https://code.jquery.com/jquery-3.4.1.min.js"></script><script>$(document).ready(function(){/*隐藏*/$(".hide").click(function(){$("p").toggle(1000);});});</script> </head> <body> <h2>这是标题</h2> <button class="hide">隐藏/显示</button> <p>我</p> </body> </html>