<html>
<head>
<script src="/jquery/jquery.min.js"></script>
</head>
<body>
<h1>隐藏 HTML 元素</h1>
<h2 id="01">Hello World!</h2>
<h2 id="02">Hello China!</h2>
<h2 id="03">Hello Shanghai!</h2>
<p id="demo"></p>
<script>
$(document).ready(function() {
var myElement = $("#02");
myElement.hide();
});
</script>
</body>
</html>