美文网首页
textarea高度自适应

textarea高度自适应

作者: 小小_chao | 来源:发表于2019-12-03 14:21 被阅读0次
$(document).ready(function () {
  $('textarea').each(function () {
    this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;');
  }).on('input', function () {
    this.style.height = 'auto'; this.style.height = (this.scrollHeight) + 'px';
  });
})

代码来源于:http://www.softwhy.com/article-9626-1.html
注:
1.“蚂蚁部落(http://www.softwhy.com/qiduan/)”网站有很多关于前端的教程;
2.https://blog.csdn.net/cindy647/article/details/87886344此链接有关于输入框input、textarea的零碎知识点;
大家可以前往查阅哦~

相关文章

网友评论

      本文标题:textarea高度自适应

      本文链接:https://www.haomeiwen.com/subject/tmrcgctx.html