码迷,mamicode.com
首页 > Web开发 > 详细

jQuery让textarea自适应高度

时间:2017-12-26 15:19:54      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:高度   oct   test   input   script   scroll   meta   div   put   

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>

<body>
<textarea name="" id="textarea" class="mytest"></textarea>
</body>
<script src="js/jquery-2.1.1.min.js"></script>
<script>
        //jQuery实现textarea高度根据内容自适应
        $.fn.extend({
          txtaAutoHeight: function () {
                return this.each(function () {
                var $this = $(this);
                      if (!$this.attr(initAttrH)) {
                         $this.attr(initAttrH, $this.outerHeight());
                    }
                    setAutoHeight(this).on(input, function () {
                        setAutoHeight(this);
                   });
                });
                 function setAutoHeight(elem) {
                    var $obj = $(elem);
                    return $obj.css({ height: $obj.attr(initAttrH), overflow-y: hidden }).height(elem.scrollHeight);
                 }
          }
         });
    
         //调用
         $(function () {
            $(".mytest").txtaAutoHeight();
         });
</script>
</html>

 

jQuery让textarea自适应高度

标签:高度   oct   test   input   script   scroll   meta   div   put   

原文地址:https://www.cnblogs.com/liumangdashi/p/8118000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!