div的打开与关闭js

 <script type="text/javascript">

     var BoxHeight=$('.t_c').css("height");
//$('.t_c').stop().animate({'height':'10px'});
$('.t_c').css('height','10px');
$('#flickr_toggle').toggle(function(){
alert("open");
$('.t_c').stop().animate({'height':BoxHeight});
},function(){
alert("close");
$('.t_c').stop().animate({'height':'10px'});
}); </script>
上一篇:20155304 2016-2017-2 《Java程序设计》第四周学习总结


下一篇:Unity Vector3.normalized和Vector3.Normalized区别