//pc导航定位 $(document).ready(function() { $(document).ready(function () { $('.menupc li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); }); }); //pc导航下拉 $(document).ready(function() { $(function(){ $(".menupc > li").hover(function(){ $(this).find("a:first").addClass("hover") $(this).find(" ul ").addClass("subnav") },function(){ $(this).find("a:first").removeClass("hover") $(this).find(" ul ").removeClass("subnav") }) }) }); //内页导航定位 $(document).ready(function () { $('.inner_fl_nav li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); });