jQuery로 scrollTop을 애니메이션 할 수 있습니까? 부드럽게 아래로 스크롤하고 싶다.특히 jQuery가 이미 함수를 가지고 있는 경우에는 함수를 쓸 필요가 없습니다.를 사용하면 됩니다.scrollTop다음과 같이 합니다. $("html, body").animate({ scrollTop: "300px" }); 닉의 대답은 훌륭하다.2개의 셀렉터(html 및 body)가 선언되어 있기 때문에 animate() 호출 내에서 complete() 함수를 지정할 때는 주의하십시오. $("html, body").animate( { scrollTop: "300px" }, { complete : function(){ alert('this alert will popup twice'); } } ); 이중 콜백을 ..