// history.scrollRestoration 기본값 (auto) 일때 manual 전환 if(history.scrollRestoration === 'auto') history.scrollRestoration = 'manual'; // 스크롤바 위치 유지 // 새로고침시 if(performance.navigation.type === performance.navigation.TYPE_RELOAD){ history.scrollRestoration = 'auto'; // 스크롤바 위치 유지 //history.scrollRestoration = 'manual'; // 스크롤바 Top 으로 이동 }