javascript - top - ¿Cómo determino scrollHeight?
scrollheight mdn (2)
¿Cómo determino scrollHeight of a division use css overflow: auto?
He intentado:
$(''test'').scrollHeight();
$(''test'').height(); but that just returns the size of the div not all the content
En última instancia, estoy tratando de crear un chat y siempre tengo la barra de desplazamiento al mensaje actual en la pantalla.
Así que estaba pensando algo como lo siguiente:
var test = $(''test'').height();
$(''test'').scrollTop(test);
Gracias,
Brian
Las formas correctas en jQuery son -
-
$(''#test'').prop(''scrollHeight'')
O -
$(''#test'')[0].scrollHeight
Espero eso ayude.
scrollHeight
es una propiedad regular de javascript, por lo que no necesita jQuery.
var test = document.getElementById("foo").scrollHeight;