UNA SOLUCIÓN COMPLETA Y SIMPLE
2020-05-14
actualizado (Soporte de navegador mejorado para móviles y tabletas)
El siguiente código funcionará:
- En entrada clave.
- Con texto pegado (clic derecho y ctrl + v).
- Con texto cortado (clic derecho y ctrl + x).
- Con texto precargado.
- Con todos los sitios de textarea (cuadros de texto de varias líneas) en todo el sitio.
- Con Firefox (v31-67 probado).
- Con Chrome (v37-74 probado).
- Con IE (v9-v11 probado).
- Con Edge (v14-v18 probado).
- Con IOS Safari .
- Con el navegador de Android .
- Con modo estricto de JavaScript .
- Está validado w3c .
- Y es aerodinámico y eficiente.
OPCIÓN 1 (Con jQuery)
Esta opción requiere jQuery y se ha probado y funciona con 1.7.2 - 3.3.1
Simple (Agregue este código jquery a su archivo de script maestro y olvídese).
$('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';
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<textarea placeholder="Type, paste, cut text here...">PRELOADED TEXT.
This javascript should now add better support for IOS browsers and Android browsers.</textarea>
<textarea placeholder="Type, paste, cut text here..."></textarea>
Test on jsfiddle
OPCIÓN 2 (JavaScript puro)
Simple (Agregue este JavaScript a su archivo de script maestro y olvídese de él).
const tx = document.getElementsByTagName('textarea');
for (let i = 0; i < tx.length; i++) {
tx[i].setAttribute('style', 'height:' + (tx[i].scrollHeight) + 'px;overflow-y:hidden;');
tx[i].addEventListener("input", OnInput, false);
}
function OnInput() {
this.style.height = 'auto';
this.style.height = (this.scrollHeight) + 'px';
}
<textarea placeholder="Type, paste, cut text here...">PRELOADED TEXT. This JavaScript should now add better support for IOS browsers and Android browsers.</textarea>
<textarea placeholder="Type, paste, cut text here..."></textarea>
Test on jsfiddle
OPCIÓN 3 (extensión jQuery)
Útil si desea aplicar más encadenamiento a las áreas de texto que desea ajustar automáticamente.
jQuery.fn.extend({
autoHeight: function () {
function autoHeight_(element) {
return jQuery(element)
.css({ 'height': 'auto', 'overflow-y': 'hidden' })
.height(element.scrollHeight);
}
return this.each(function() {
autoHeight_(this).on('input', function() {
autoHeight_(this);
});
});
}
});
Invocar con $('textarea').autoHeight()
ACTUALIZAR TEXTAREA A TRAVÉS DE JAVASCRIPT
Al inyectar contenido en un área de texto a través de JavaScript, agregue el siguiente código para invocar la función en la opción 1.
$('textarea').trigger('input');
ALTURA DE TEXTAREA PREDETERMINADA
Para corregir la altura inicial del área de texto, deberá agregar una condición adicional:
const txHeight = 16;
const tx = document.getElementsByTagName("textarea");
for (let i = 0; i < tx.length; i++) {
if (tx[i].value == '') {
tx[i].setAttribute("style", "height:" + txHeight + "px;overflow-y:hidden;");
} else {
tx[i].setAttribute("style", "height:" + (tx[i].scrollHeight) + "px;overflow-y:hidden;");
}
tx[i].addEventListener("input", OnInput, false);
}
function OnInput(e) {
this.style.height = "auto";
this.style.height = (this.scrollHeight) + "px";
}
<textarea placeholder="Type, paste, cut text here...">PRELOADED TEXT. This JavaScript should now add better support for IOS browsers and Android browsers.</textarea>
<textarea placeholder="Type, paste, cut text here..."></textarea>