为什么我的"回到顶部"按钮仅在我位于页面底部时才起作用?

时间:2017-09-03 00:01:06

标签: javascript html css



// 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("Button").style.textAlign = "center".display =
      "block";
  } else {
    document.getElementById("Button").style.display = "none";
  }
}

// When the user clicks on the button, scroll to the top of the document

function topFunction() {
  document.body.scrollTop = 0;
  document.documentElement.scrollTop = 0;
}




0 个答案:

没有答案