$(function () { // 搴曢儴鐩綍鐐瑰嚮 $(".tit_area").click(function () { if($(this).parent().hasClass("sublist_show")){ $(this).parent().removeClass("sublist_show"); }else { $(this).parent().addClass("sublist_show"); } }) // 杩斿洖椤堕儴鎸夐挳鏄剧ず $(".commontop").click(function () { $('body,html').animate({ scrollTop: 0 }, 200); return false; }); $(window).scroll(function () { var scrolltop = $(window).scrollTop(); if (scrolltop >= 600) { $(".commontop").fadeIn(1000); } else { $(".commontop").fadeOut(1000); } }); // 渚ц竟鏍忔樉绀轰笌闅愯棌 var whpx = $(window).height(); var menuproup = $('.meng'); var closek = function(){ $(".public_menuCont").stop().animate({ right: '-105%' }, 300, function () { $(document.body).removeClass("bodyover"); $(".meng").fadeOut(100); }) } $('.public_menuCont').css({'height':whpx}); $('.menuI').click(function () { $('.meng').fadeIn(100); $(".public_menuCont").stop().animate({right:'0'},300); $(document.body).addClass("bodyover"); }); $(document).on('click', '.icon_close', function () { closek() }); menuproup.on('click', function(e) { if($(e.target).closest('.public_menuCont').length > 0){ return; }else{ closek() } }); })