<script type="text/javascript">
//展开图片或收缩图片 $(function () {
$('#Button3').click(function () { $('#img').show(5000); })
$('#Button4').click(function () { $('#img').hide(5000); }) }) </script> < /head> < body> <img alt="" id="img" src="images/16.jpg" /> <input id="Button3" type="button" value="Show Img" />
<input id="Button4" type="button" value="Hide Img" />
</body>