textarea高度自适应且不出现滚动条
程序员文章站
2024-02-28 19:29:40
...
$("#元素").focus(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';
});
});
就是没想好怎么触发,待完善一开始的状态