jQuery返回顶层与返回底部
<script type="text/javascript"> $(window).scroll(function(){ var disTop = $(window).scrollTop(); if(disTop > 250){ $("#top").fadeIn(600); }else{ $("#top").fadeOut(600); } }); $(function(){ $("#top").click(function(){ $("html,body").animate({ scrollTop: 0 },1500); }) $("#bottom").click(function(){ $("html,body").animate({ scrollTop: document.body.clientHeight },1500); }) }); </script>