$(window).scroll(function() { var scrollPos = $(window).scrollTop(); if (scrollPos > 0) { $("body").addClass("scrolling"); } else { $("body").removeClass("scrolling"); } }); $(function() { var scrollPos = $(window).scrollTop(); if (scrollPos > 0) { $("body").addClass("scrolling"); } else { $("body").removeClass("scrolling"); } }) $(window).scroll(function() { var scrollPos1 = $(window).scrollTop(); if (scrollPos1 > 10) { $(".headerAd").slideUp(); $(".tCimg").fadeOut(); $(".header").removeClass('headerIn'); } }); $(".head-menu-btn").click(function() { $('html').toggleClass('drawerMenu-open'); $('body').toggleClass('fixdbody'); $('.mobNav').slideToggle(); }) $(".navp").each(function() { $(this).click(function() { $(this).parent().siblings().find('.subNavm').slideUp(); $(this).parent().siblings().removeClass('on'); $(this).parent().toggleClass('on'); $(this).next().slideToggle(); }) }) $('.toSearch').click(function() { $(".cd-popup").addClass('is-visible') }); $('.cd-popup-close').click(function() { $(".cd-popup").removeClass('is-visible') }) if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion.split(";")[1].replace(/[ ]/g, "").replace("MSIE", "")) <= 9) { //document.getElementById('browser-modal').style.display='block'; $('body').append( '

请升级浏览器版本

你正在使用旧版本浏览器。请升级浏览器以获得更好的体验。

' ) //console.log("您的浏览器版本过低,请使用IE9以上版本"); } var url = window.location.href; //导航栏激活 $('.nav-list a').each(function() { if (returnUrl($(this).attr('href')) == returnUrl(url)) { $(this).parent("li").addClass('active') $(this).parent("li").siblings().removeClass("active") } }); //右边导航激活 $('.ul-has-bg a').each(function() { if (returnUrl($(this).attr('href')) == returnUrl(url)) { $(this).children("li").addClass('active') $(this).siblings().children("li").removeClass("active") } }); // 新闻导航 function addListenClick() { $('.diff-nav a').each(function() { if (returnUrl($(this).attr('href')) == returnUrl(url)) { $(this).children("li").addClass('hr-menu-active') $(this).siblings().children("li").removeClass("hr-menu-active") } }); } addListenClick() //以下为截取url的方法 function returnUrl(href) { var number = href.lastIndexOf("/"); return href.substring(number + 1); }