/** * Created by Administrator on 2017/2/15. */ $(function(){ $('.menu2>li>a').click(function () { if ($(this).parent('li').find('.menu3').length > 0 || $(this).find('.menu3').length < 0) { $(this).parent('li').addClass('on').siblings('li').removeClass('on'); $(this).parent('li').find('.menu3').slideDown(); $(this).parent('li').siblings('li').find('.menu3').slideUp(); } else { $(this).parents('li').addClass('on').siblings('li').removeClass('on'); $(this).parents('li').find('.menu3-ul').slideDown(); $(this).parents('li').siblings('li').find('.menu3-ul').slideUp(); } if ($(this).find('.menu3').length == 0) { } }); $(function () { //返回顶部 $(".qqkefu .top").click(function () { $("html,body").animate({ "scrollTop": 0 }, 1000); }); $(".qqkefu li.big_li").hover(function () { $(this).css("width", "160px"); }, function () { $(this).css("width", "48px"); }); //QQ $(".qqkefu li").hover(function () { $(this).find(".erweima").stop(true, true).fadeIn(); }, function () { $(this).find(".erweima").stop(true, true).fadeOut(); }); }); });