点击菜单项,跳转至目标页,并保持选中状态
2018-08-27 本文已影响0人
我有男神520
$(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就加上选中的样式