H5 的输入控件动态调整高度

html代码:

css代码:

.pro-des-text{
    height: 260px;
}

js代码:

let $text = $('.new-project-details').find('textarea').on('keyup', function(e) {
    e = e.target;
    if (e.clientHeight < e.scrollHeight) {
        e.style.height = e.scrollHeight + 'px';
    }
})

你可能感兴趣的:(H5 的输入控件动态调整高度)