jsp 让文本框高度随内容改变而改变
$(function(){02var$comment=$("#comment");03$(".bigger").click(function(){04if(!$comme...
$(function(){
02
var $comment = $("#comment");
03
$(".bigger").click(function(){
04
if(!$comment.is(":animated")){
05
if($comment.height() < 500){
06
$comment.animate({ height : "+=50"},400);
07
}
08
}
09
});
10
$(".smaller").click(function(){
11
if(!$comment.is(":animated")){
12
if($comment.height() > 50){
13
$comment.animate({ height : "-=50"},400);
14
}
15
}
16
});
17
})
<textarea id="comment" rows="8" cols="20">多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.</textarea> 展开
02
var $comment = $("#comment");
03
$(".bigger").click(function(){
04
if(!$comment.is(":animated")){
05
if($comment.height() < 500){
06
$comment.animate({ height : "+=50"},400);
07
}
08
}
09
});
10
$(".smaller").click(function(){
11
if(!$comment.is(":animated")){
12
if($comment.height() > 50){
13
$comment.animate({ height : "-=50"},400);
14
}
15
}
16
});
17
})
<textarea id="comment" rows="8" cols="20">多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.多行文本框高度变化.</textarea> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询