페이지 접속시 맨하단으로 이동하기
본문
처음엔 별거 아니라고 생각했는데....
어렵네요 ㅡㅜ.
제목 그대로 페이지 접속시 맨아래 하단으로 이동된 상태로 접근을 하고 싶은데
자바스크립트나 이것저것 써보면
맨처음 접속시에는 적용되나 새로고침 하면 잘 안되네요
혹시 팁이나 아시는 분 조언 부탁 드립니다. (__)
답변 5
참고만 하세요...
<script>
$(document).ready(function(){
$('#down').click(function () {
$('body,html').animate({
scrollTop: $(document).height()
}, 400);
return false;
});
});
</script>
<a href="javascript:void(0);" id="down" title="하단"><i class="fa fa-arrow-circle-down fa-3x" aria-hidden="true"></i></a>
<script>
function scroll_go(){
$("body").scrollTop($(document).height());
}
scroll_go();
</script>
간혹 위의 태그가 잘 안먹으시면
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).scrollTop($(document).height()+500);
</script>
로 해보시는것도
!--><script>
$(function(){
$("body").scrollTop($(document).height());
});
</script>
답변을 작성하시기 전에 로그인 해주세요.