스크롤 높이는 어떻게 결정합니까?
css overflow:auto를 사용하여 분할의 스크롤 높이를 결정하는 방법은 무엇입니까?
시도해 봤습니다.
$('test').scrollHeight();
$('test').height(); but that just returns the size of the div not all the content
궁극적으로 대화를 만들고 화면에 현재 메시지로 이동하는 스크롤 바를 항상 가지고 있습니다.
그래서 저는 다음과 같은 생각을 했습니다.
var test = $('test').height();
$('test').scrollTop(test);
감사해요.
브라이언
jQuery의 올바른 방법은 -
$('#test').prop('scrollHeight')
오어$('#test')[0].scrollHeight
오어$('#test').get(0).scrollHeight
scrollHeight
일반 자바스크립트 속성이므로 jQuery가 필요 없습니다.
var test = document.getElementById("foo").scrollHeight;
다음을 사용할 수도 있습니다.
$('#test').context.scrollHeight
언급URL : https://stackoverflow.com/questions/7381817/how-do-i-determine-scrollheight
'programing' 카테고리의 다른 글
스택 배열의 포인터에 액세스할 수 없는 이유는 무엇입니까? (0) | 2023.10.19 |
---|---|
판다 버전 rbind (0) | 2023.10.19 |
glibc 사용 여부를 구분하는 방법 (0) | 2023.10.19 |
사용자 지정 게시글 메타 저장, 데이터 저장 안 함 (0) | 2023.10.19 |
벡터/매트릭스 끝까지 우아한 인덱싱 (0) | 2023.10.19 |