<html> <head> <script type="text/javascript" src="jq.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".flip").click(function(){ $("div").css("display","block")
}); }); </script> <style type="text/css"> div.panel,p.flip { margin:0px; padding:5px; text-align:center; background:#e5eecc; border:solid 1px #c3c3c3; } div.panel { height:120px; display:none; } </style> </head> <body> <div class="panel"> <p>欢迎你的到来</p> <p>在 W3School,你可以找到你所需要的材料。</p> </div> <p class="flip">请点击这里</p> </body> </html>