首页 > 代码库 > 多行文本框的高度变化

多行文本框的高度变化

<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>多行文本框的高度变化</title>
<script type="text/javascript" src="http://www.mamicode.com/js/jquery.min.js"></script>
<style type="text/css">
.msg{
width: 400px;
border: 1px solid #cfcfcf;
padding: 5px;
overflow: hidden;
}
.msg_caption{
height: 35px;
}
.msg_caption .bigger,.msg_caption .smaller{
background-color: blue;
color:#fff;
padding: 10px;
cursor: pointer;
}

</style>
</head>
<body>
<form>
<div class="msg">
<div class="msg_caption">
<span class="bigger">变大</span>
<span class="smaller">变小</span>
</div>
<div class="content">
<textarea id="comment" rows="2" cols="50">多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化多行文本高度的变化
</textarea>
</div>
</div>
</form>
<script type="text/javascript">
$(function(){
  var comment=$("#comment");
  $(".bigger").click(function() {
    var textHeight=comment.height();
    if(!comment.is(":animated")){
      if(textHeight < 300){
        $("#comment").animate({"height":"+=50"}, 1000);
      }
    }
  })

  $(".smaller").click(function() {
    var textHeight=comment.height();
    if(!comment.is(":animated")){
      if(textHeight > 50){
        $("#comment").animate({"height":"-=50"}, 1000);
      } 
    }
  })

})
</script>
</body>
</html>

多行文本框的高度变化