본문 바로가기
IT/JavaScript

자바스크립트 스크롤 아래로, 위로

by 최고영회 2014. 5. 20.
728x90
반응형
SMALL
아래로 : document.body.scrollTop = document.body.scrollHeight;
특정 DIV 의 스크롤 아래로 : document.getElementById('targetId').scrollTop = document.getElementById('targetId').scrollHeight;
위로 : document.body.scrollTop = 0;
특정 DIV 의 스크롤 위로  :  document.getElementById('targetId').scrollTop = 0;


728x90
반응형
LIST