$(document).ready(function(){ $('.alert .close').click(function(){ $(this).parent().hide(); }); //返回顶部 $('#scrolltop').hide(); //隐藏go to top按钮 $(window).scroll(function(){ if($(this).scrollTop() > 500){ $('#scrolltop').fadeIn(); }else{ $('#scrolltop').fadeOut(); } }); $('#scrolltop span').click(function(){ $('html ,body').animate({scrollTop: 0}, 300); return false; }); $('#scrolltop2').click(function(){ $('html ,body').animate({scrollTop: 0}, 300); return false; }); phMenu(); }); function phMenu() { // ph瀵艰埅 $(".mc_ph_menu").click(function () { // 11.19 var h = window.innerHeight - 64; $(".xialaph").css("height",h+"px"); // 11.19 $(this).find(".point").toggleClass("active"); $(".xialaph").stop().slideToggle(); $(".phonemeng").toggleClass('active'); $("html").toggleClass("modal-open") // $("body,html").animate({ // scrollTop: 0 // }, 500); }); // ph瀵艰埅浜岀骇 $(".xialaph h4").click(function (e) { // if ($(e.target).hasClass("g_phnav1")) { // return; // } // if ($(this).parents("li").hasClass("mc_phnav_hasnosub")) { // return; // } $(this).siblings(".ul2").stop().slideToggle(); $(this).parent().parent().siblings().find(".ul2").stop().slideUp(); $(this).toggleClass("active"); $(this).parent().parent().siblings().find("h4,h5").removeClass('active'); }); /*ph瀵艰埅涓夌骇*/ $(".xialaph h5").click(function () { $(this).siblings(".ul3").stop().slideToggle(); $(this).parent().siblings().find(".ul3").stop().slideUp(); $(this).toggleClass("active"); $(this).parent().siblings().find("h4,h5").removeClass('active'); }); $(".ul1>li").each(function () { if ($(this).find(".ul2 li").length == 0) { $(this).addClass("mc_phnav_hasnosub"); } }) $(".xialaph h4 a").click(function (e) { e.stopPropagation }); }