programing

스크롤 높이는 어떻게 결정합니까?

bestprogram 2023. 10. 19. 22:39

스크롤 높이는 어떻게 결정합니까?

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