$(document).ready(function () {
$(".nav a").each(function () {
$this = $(this);
if ($this[0].href == String(window.location)) {
$("#li").removeClass("active");
$this.parent().addClass("active");
}
});
});
通过页面加载初始化,遍历菜单项的url,如果等于当前页面的url就加上选中的样式