$(function () { $(".weixin img").hide(); $(".weixin").hover(function () { $(this).find("img").fadeIn(); }, function () { $(this).find("img").fadeOut(); }); }) $(function () { $("#nav_ul > li").hover(function () { $(this).find("ul").slideDown(300); }, function () { $(this).find("ul").stop(true, true).slideUp(); }); }) $(function () { $("#float_div_top").click(function () { $("html,body").animate({ scrollTop: 0 }, 500); }); })