<!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").hide();});/*显示*/$(".show").click(function(){$("p").show();});});</script>
</head>
<body>
<h2>这是标题</h2>
<p>我</p>
<button class="hide">隐藏</button>
<button class="show">显示</button>
</body>
</html>