我需要在选择时将每个菜单项的状态更改为活动状态。
我正在使用它:
function() {
var url = window.location.href;
$(".menu a.drop").each(function() {
if (url == (this.href)) {
$(this).closest("li").addClass("active");
}
});
});
可行,但第一项的“href”属性与网址不匹配。 因此,第一项不会使课程“活跃”。
如何让第一项让课程活跃?