您的位置:首页 > 其它

自适应的textarea 自动调整高度

2017-07-04 15:20 225 查看

更详细的博客转移到了我的github+hexo博客:https://zc95.github.io

//自适应
$('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';
});
点击查看demo
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: