如何根据当前路径更改 href-Attribute 的值?
我在 AngularJS 中的 if 子句如下所示:
if (newPath.indexOf('test') > -1) {
// change the value of the href-Attribute
} else {
// don't change the value of the href-Attribute
}
我的 HTML 如下所示:
<li>
<a aria-expanded="false" role="button" href="/path1/path2/path4">Downloads</a>
</li>