//菜单根据url变颜色
$(document).ready(function(){
$('#nav li a').each(function(){
if($($(this))[0].href==String(window.location))
$(this).parent().addClass('on');
});
})
转载于:https://www.cnblogs.com/isungge/p/5754142.html
//菜单根据url变颜色
$(document).ready(function(){
$('#nav li a').each(function(){
if($($(this))[0].href==String(window.location))
$(this).parent().addClass('on');
});
})
转载于:https://www.cnblogs.com/isungge/p/5754142.html