<script language="
javascript" type="text/javascript" src="jquery-1.7.2.js"></script>
<script language="javascript" type="text/javascript">
/**
* hide show函数用例
* 显示与隐藏标签
*/
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide(1000);
$("#show").click(function(){
$("p").show(1000);
});
});
});
</script>
<p>
大家好,欢迎来到Jquery 教程的世界。
</p>
<button id="show">显示</button>
<button id="hide">隐藏</button>