jquery 改变textarea高度

2015-03-02 0 830
jquery 改变textarea高度
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
        }
});

遇见资源网 js/jquery jquery 改变textarea高度 http://www.ox520.com/10468.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务