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

Html - TextArea - auto sizing to avoid scrollbar

时间:2015-12-04 14:54:15      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

A list of html TextArea element with class name "noteItem", below code will auto resize the TextArea to avoid scrollbar

JQuery:

$(‘.noteItem‘).each(function () {

var scrollHeight = $(this).prop(‘scrollHeight‘);

$(this).css(‘height‘,‘auto‘);

$(this).css(‘height‘, scrollHeight + ‘px‘);

});


reference - http://stackoverflow.com/questions/5980150/jquery-js-get-the-scrollbar-height-of-an-textarea

Html - TextArea - auto sizing to avoid scrollbar

标签:

原文地址:http://blog.csdn.net/jameszhou/article/details/50174357

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