Posted in Javascript onMarch 28, 2013
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> .content { border: 1px solid #ccc; width: 440px; overflow: hidden; margin: 10px; } </style> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { if ($('#content').height() > 400) $('#content').height(400); $('#bigger').toggle(function() { $('#content').height($('#content').height() + 100); $('#bigger').html('缩小'); }, function() { $('#content').height($('#content').height() - 100); $('#bigger').html('放大'); }) }); </script> </head> <body> <div id="content" class="content"> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?<br /> ?热?0<br /> ?热?1<br /> ?热?2<br /> ?热?3<br /> ?热?4<br /> ?热?5<br /> ?热?6<br /> ?热?7<br /> ?热?8<br /> ?热?9<br /> ?热?0<br /> ?热?1<br /> ?热?2<br /> ?热?3<br /> ?热?4<br /> ?热?5<br /> </div> <br /> <span id="bigger">放大</span> </body> </html>
jQuery div层的放大与缩小简单实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@