多行文本框的高度变化

Posted 代码小精灵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多行文本框的高度变化相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>多行文本框的高度变化</title>
<script type="text/javascript" src="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>

以上是关于多行文本框的高度变化的主要内容,如果未能解决你的问题,请参考以下文章

在多行文本框上设置最大字符(可见性允许)

wpf dataGrid的 rowheight 自动适用(根据最后一个备注的文本框的高度变化)

更改文本框高度?

两个多行文本框的乘积并将其显示到另一个多行文本框

怎样写CSS设置多行文本框的显示行数?

自动滚动到由 backgroundworker 更新的多行文本框的底部