码迷,mamicode.com
首页 > 其他好文 > 详细

textarea高度自动增高

时间:2016-04-08 10:14:19      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

 

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>

textarea高度自动增高

标签:

原文地址:http://www.cnblogs.com/myclovers/p/5366668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!