2011-09-05 14:10

[jQuery] textarea 自動高度很簡單

上網找了一些文章來看後,自己又再改了一改,發現很簡單就可以達到自動高度的功能,真是給他快樂的說。

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
  2. <html> 
  3. <head> 
  4.    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
  5.    <title>文字區塊自動高度</title> 
  6.    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script> 
  7.    <script type="text/javascript">  
  8.    jQuery(function($) { 
  9.        $("textarea.AutoHeight").css("overflow","hidden").bind("keydown keyup", function(){ 
  10.            $(this).height('0px').height($(this).prop("scrollHeight")+"px"); 
  11.        }).keydown(); 
  12.    }); 
  13.    </script>  
  14. </head> 
  15. <body> 
  16.    <textarea class="AutoHeight"></textarea> 
  17.    <textarea class="AutoHeight"></textarea> 
  18.    <textarea class="AutoHeight"></textarea> 
  19. </body> 
  20. </html> 

5 回應:

Unknown 提到...

謝謝你, 這個方法的確又簡單又方便。

Unknown 提到...

超过一屏后会闪动,改用这个插件不错http://www.jacklmoore.com/autosize

Unknown 提到...

http://www.jacklmoore.com/autosize

超过一屏会闪动,换这个插件不错。

Jax Hu 提到...

的確,用起來感覺是蠻好的

味味A 提到...

剛好我也有這個需求,感謝提供分享