$(function(){ $(window).scroll(function () { if($(window).scrolltop() >= 30)//距离顶部多少高度显示按钮 { $('#gotopbtn').slidedown(200); }else { $('#gotopbtn').slideup(200); } }); $('#btn-gototop').click(function(){ $('body,html').animate({scrolltop:0},500) }); //按钮定位 var win_width= $(window).width(); //窗口宽度 })