728x90 300x250 SMALL Element.scrollIntoView()1 element.scrollIntoView() 특정 위치로 이동 element.scrollIntoView() 특정 element를 기준으로 스크롤을 이동시키는 메소드이다. 기본 문법 element.scrollIntoView(); element.scrollIntoView(alignToTop); // Boolean parameter element.scrollIntoView(scrollIntoViewOptions); // Object parameter 예시 id ="content"인 요소를 브라우저 창의 보이는 영역으로 스크롤한다. const element = document.getElementById("content"); element.scrollIntoView(); 즉 element.scrollIntoView()는 스크롤 해서 엘리먼트 영역을 보여주는 기능을한다. Th.. 2022. 8. 16. 이전 1 다음 728x90 반응형 LIST