jquery 改变textarea高度

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

var $comment = $('#comment');  //获取评论框
$('.bigger').click(function(){ //放大按钮绑定单击事件
      if( $comment.height() < 500 ){
           $comment.height(  $comment.height() + 50 ); //重新设置高度,在原有的基础上加50
      }
})
$('.smaller').click(function(){//缩小按钮绑定单击事件
        if( $comment.height() > 50 ){
            $comment.height( $comment.height() - 50 ); //重新设置高度,在原有的基础上减50
        }
});