如何从this link将这个滚动条回到顶部整齐的东西,只需向下滚动一下,您将在右下角的图标(顶部指针)中看到,在点击时滚动回到顶部。谢谢
答案 0 :(得分:4)
在jQuery中:
$(document).ready(function() {
$('a[href=#top]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});
然后您可以制作如下链接:
<a href="#top" title="Scroll back to the top">Back to the top</a>
答案 1 :(得分:1)
您可以在此处找到该脚本: http://www.javascriptkit.com/jkincludes/scrolltopcontrol.js
虽然您需要使用jquery来使用此脚本。