$(function(){ //当滚动条的位置处于距顶部100像素以下时,跳转链接出现,否则消失 $(function () { $(window).scroll(function(){ if ($(window).scrolltop()>100){ $("#back-to-top").fadein(1500); } else { $("#back-to-top").fadeout(1500); } }); //当点击跳转链接后,回到页面顶部位置 $("#back-to-top").click(function(){ //$('body,html').animate({scrolltop:0},1000); if ($('html').scrolltop()) { $('html').animate({ scrolltop: 0 }, 1000); return false; } $('body').animate({ scrolltop: 0 }, 1000); return false; }); }); }); console.log('hello world !'); console.log('努力学习 !') console.log('好好赚钱 !') console.log('接单ing !') console.log('wx:zhangruiwoloveni !')