jquery 多行文本框(textarea)高度变化

时间:2024-02-09 14:04:50
【文件属性】:

文件名称:jquery 多行文本框(textarea)高度变化

文件大小:21KB

文件格式:PDF

更新时间:2024-02-09 14:04:50

ar ex ext

代码如下:$(function(){     var $comment = $(‘#comment’);  //获取评论框      $(‘.bigger’).click(function(){ //放大按钮绑定单击事件         if(!$comment.is(“:animated”)){ //判断是否处于动画            if( $comment.height() < 500 ){                  $comment.animate({ height : “+=50” },400); //重新设置高度,在原有的基础上加50            }     


网友评论