标签:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
随着textarea 输入内容 自动增加高度 <script type= "text/javascript" > $( ".input_textarea" ).each(function(){ this .style.height= this .scrollHeight+ ‘px‘ ; }); $( ".input_textarea" ).bind({ input:function(){ this .style.height= this .scrollHeight + ‘px‘ ; }, propertychange:function(){ this .style.height= this .scrollHeight + ‘px‘ ; } }); </script> |
标签:
原文地址:http://www.cnblogs.com/myclovers/p/5366668.html