function readyNumber() { $('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'; }) } readyNumber()
JavaScript 代码实现 textarea 实现高度自适应。
最新推荐文章于 2023-10-23 20:56:34 发布