Jquery实现<textarea>根据内容自动改变大小

发布时间:2020-07-12 18:26:48 作者:Alliso
来源:网络 阅读:1130

<script type="text/javascript" src="${webRoot}/js/jquery.autogrow.textarea.js"></script>


<h4 >任职要求</h4>

<div> <textarea    cols="120" rows="10" >${回显}</textarea></div>



jquery.autogrow.textarea.js如下:

/*

Auto-growing textareas; technique ripped from Facebook

(Textarea need set style "overflow:hidden" under IE)

*/

(function($) {

function times(string, number) {

  for (var i = 0, r = ''; i < number; i ++) r += string;

  return r;

}

 

$.fn.autogrow = function(options) {

  this.filter('textarea').each(function() {

    this.timeoutId = null;

    var $this = $(this), minHeight = $this.height();

    var shadow = $('<div></div>').css({

      position:   'absolute',

      wordWrap:   'break-word',

      top:        0,

      left:       -9999,

      display:    'none',

      width:      $this.width(),

      fontSize:   $this.css('fontSize'),

      fontFamily: $this.css('fontFamily'),

      lineHeight: $this.css('lineHeight')

    }).appendTo(document.body);

 

    var update = function() {

      var val = this.value.replace(/</g, '&lt;')

        .replace(/>/g, '&gt;')

        .replace(/&/g, '&amp;')

        .replace(/\n$/, '<br/>&nbsp;')

        .replace(/\n/g, '<br/>')

        .replace(/ {2,}/g, function(space) { return times('&nbsp;', space.length -1) + ' ' });

      shadow.html(val);

      $(this).css('height', Math.max(shadow.height(), minHeight));

    }

     

    var updateTimeout = function() {

      clearTimeout(this.timeoutId);

      var that = this;

      this.timeoutId = setTimeout(function(){ update.apply(that); }, 100);

    };

 

    $(this).change(update).keyup(updateTimeout).keydown(updateTimeout);

    update.apply(this);

  });

  return this;

}

})(jQuery);



推荐阅读:
  1. Andorid WebView内容自适应并改变图片大小
  2. jQuery如何动态改变图片显示大小

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

jquery textarea ue

上一篇:kali“安装系统”失败分析及解决

下一篇:第一章 Centos7.5介绍与安装部署-centos7.5知识

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》