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 
        } 
});

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/9989.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论