当您进入站点时,我的默认链接颜色处于活动状态,但是当鼠标单击另一个链接并且新的当前页面现在处于活动状态时,我似乎无法将其删除。这是我的代码。
JS
$("a").on("click", function() {
$(".active").removeClass("active");
});
CSS
.active{
color: #ffff00
!important;
}
a {
text-decoration: none;
z-index: 5;
font-family: arial, "Trebuchet MS";
cursor: pointer;
color: #2777A3;
}
HTML
<a href="http://www.pro.com/" target="_self" class="active">Home</a>`