답변:
다음 scrollTop
과 같이를 설정할 수 있습니다 .
$('html,body').scrollTop(0);
또는 상단에 스냅하는 대신 작은 애니메이션을 원할 경우 :
$('html, body').animate({ scrollTop: 0 }, 'fast');
html
및 body
태그 스타일 지정 방법에 문제가있을 수 있습니다 . 그렇지 않으면 $(window)
대신 사용하십시오.
scroll
CSSOM 표준에 있고 scrollTo
원래 DOM 레벨 0에 정의되었으며 표준의 일부는 아닙니다. 그러나 CSSOM에는 scrollTo
이전 버전과의 호환성이 포함되어 있습니다.
scroll
폭넓게 지원되고 있다고 생각 합니다. stackoverflow.com/q/1925671/41906
window && window.scroll(0,0);
내 뷰 모델에서 허용되는 것 같습니다 .
자바 스크립트없이 할 수 있고 단순히 앵커 태그를 사용합니까? 그런 다음 무료로 해당 js에 액세스 할 수 있습니다.
모달을 사용하는 동안 js free에 관심이 없다고 가정합니다. ;)
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
$('html, body').animate({scrollTop:0}, 'slow');
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: red;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#myBtn:hover {
background-color: #555;
}
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<div style="background-color:black;color:white;padding:30px">Scroll Down</div>
<div style="background-color:lightgrey;padding:30px 30px 2500px">This example demonstrates how to create a "scroll to top" button that becomes visible when the user starts to scroll the page.</div>