это наводящие примеры
<style>
a[href=test2] {
color: red
}
}
.active {
color: green;
font-weight: bold;
}
</style>
<body>
<ul id="menu">
<li>
<a href="test1">Тест1</a>
</li>
<li>
<a href="test2">Тест2</a>
</li>
<li>
<a href="test3">Тест3</a>
</li>
</ul>
<script>
var link = document.querySelector("#menu a[href='test1']");
//document.querySelector("#menu a[href='" + window.location.href + "']")
if (link) link.style.color = 'green';
</script>
</body>