我在页面上有一个按钮,我希望当它被点击时,页面滚动到 0 位置。
HTML
<button id="button">Back to top </button>
jQuery
$(document).scroll(function(){
var scroll_pos = $(window).scrollTop()
if(scroll_pos > 10){
$('#button').click(function(){
// what code to enter here??
});
}
});