$(function () { $("#izl_rmenu").each(function () { $(this).find(".btn-wx").mouseenter(function () { $(this).find(".pic").fadeIn("fast"); }); $(this).find(".btn-wx").mouseleave(function () { $(this).find(".pic").slideUp("fast"); }); $(this).find(".btn-phone").mouseenter(function () { $(this).find(".phone").fadeIn("fast"); }); $(this).find(".btn-phone").mouseleave(function () { $(this).find(".phone").slideUp("fast"); }); $(this).find(".btn-qq").mouseenter(function () { $(this).find(".qq").fadeIn("fast"); }); $(this).find(".btn-qq").mouseleave(function () { $(this).find(".qq").slideUp("fast"); }); $(this).find(".btn-top").click(function () { $("html, body").animate({ "scroll-top": 0 }, "fast"); }); }); var lastRmenuStatus = false; });