我正在尝试将aria-expanded添加到链接中,我希望当用户扩展链接时,aria-expanded的值为true,否则为false。我不知道如何实现这一点,我认为三元运算符会做但不确定如何。
<a href="" ng-click="do()" class="" aria-expanded="{{}}" aria-label="test">
<span class=""></span>Something
</a>
答案 0 :(得分:0)
您可以简单地将属性绑定到变量
<a href="" ng-click="do()" class="" aria-expanded="{{expandedValue}}" aria-label="test">
<span class="">Something</span>
</a>
在您的控制器中
$scope.do = function(){
$scope.expandedValue = !$scope.expandedValue;
}