/*$(function (){ if ($(window).scrollTop() >= 50) { $(".header1").addClass("active"); }else{ $(".header1").removeClass("active"); } }); window.onkeydown = window.onkeyup = window.onkeypress = function (event) { // 鍒ゆ柇鏄惁鎸変笅F12锛孎12閿爜涓?23 if (event.keyCode == 123) { event.preventDefault(); // 闃绘榛樿浜嬩欢琛屼负 window.event.returnValue = false; } }; window.oncontextmenu = function() { event.preventDefault(); // 闃绘榛樿浜嬩欢琛屼负 return false; }; */ $(function(){ var li_h=window.location.pathname; var time=setInterval(function(){ var m=$(".NavList_a1 .more").attr("href"); if(m){ $(".NavList_a1 .more").each(function(){ var l_m=$(this).attr("href"); if(l_m==li_h){ $(this).parent().addClass("L_click"); } } ); clearInterval(time); } },100); });