$(function(){ $("#gotop").click(function() { $('body,html').animate({ scrollTop: 0 }, 300) }); $('#r_fudong li').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); }); })