回答:
次のscrollTop
ようにを設定できます。
$('html,body').scrollTop(0);
または、上部にスナップする代わりに小さなアニメーションが必要な場合:
$('html, body').animate({ scrollTop: 0 }, 'fast');
html
とbody
タグのスタイル設定に問題がある可能性があります。それ以外の場合は$(window)
代わりに使用してください。
scroll
CSSOM標準に含まscrollTo
れていますが、もともとDOM Level 0で定義されており、標準の一部ではありません。ただし、CSSOMにscrollTo
は下位互換性のために含まれています。
scroll
幅広く支持されていると思います。stackoverflow.com/q/1925671/41906を
window && window.scroll(0,0);
私の見解モデルで許容されます。
// 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>
これは古いことを知っていますが、Edgeで問題が発生している場合:
プレーンJS: window.scrollTop=0;
残念ながら、Edgeでエラーscroll()
をscrollTo()
スローします。