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/tech/pnotes/9989.html