基於JQ 根據輸入內容自適應輸入框高度 支援輸入增高 渲染時設定高度和內容一致
阿新 • • 發佈:2018-12-04
// 呼叫方法
bootText('textarea', 50) // 第一個引數是class 或者 id 第二個引數是這個class或者id物件的最小高度
function bootText(cls, minHeight){
var idArr = $(cls); // 獲取傳進來的class或者id
$.each(idArr, function(k, v) { // 迴圈遍歷 為每一個新增它自己的scrollHeight
$(v).css({
'min-height': v.scrollHeight+'px',
'height' : v.scrollHeight+'px',
'overflow': 'auto'
}) // 其實這裡換成overflow hidden效果更好 沒滾動條
});
$(cls).on('input prototychange', function(){ // 監聽的事件 可以換成keyup等等 可以自行封裝
var that = $(this);
that.css('height', '0') // 避免每次改變的時候高度都會增加的問題
if(that.val().length<=0 ){ // 如果輸入框內容空了 回到最小的高度
that.css({'height': minHeight+'px','min-height': minHeight+'px'})
}else{ // 不是空的話 設定高度
that.css('height', that[0].scrollHeight+'px') // 這裡也可以把最小高度一起改變
// console.log(that[0].scrollHeight)
}
})
}
// 有啥效能優化方案請大佬指正
// 給大佬遞煙