<script type="text/javascript" src="../../jquery-1.3.2.js"></script>
<div style="background-color:#f0000F; width:100px; height:100px" id="a"></div>
轻松实现div的隐藏
$("#a").hide()
实现div的显示
$("#a").show()
这里主要是jquery的selector语法以及hide,show API
