jquery 返回头部
2013年4月2日
$(function(){
$(window).scroll(function () {
if ($(this).scrollTop() > 500) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$("#toTop").click(function(){
$("html,body").animate({scrollTop:0},"slow");
return false;
});
});