日期:2014-05-16 浏览次数:20325 次
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(function(){
$('#showDiv').click(function(){
$('#div1').animate({
width : '200px' ,
height : '200px'
});
});
});
</script>
</head>
<body>
<button id="showDiv">显示DIV</button>
<div id="div1" style="position:absolute;bottom:0px;right:0px;border:1px solid;height:0px;width:0px;">
dsfasfasdfasdf
</div>
</body>
</html>