您好我是键盘导航的新手,这是我的角度应用程序,当我使用键盘选项卡时点击该复选框它应该采取该按钮,现在我使用tabindex但它不工作。
<div class="row well" ng-if="actionRequired">
<label for="checkbox" class="bg-warning" style="background-color:#ddd;margin-left:32px;">
<input type="checkbox"
id="checkbox"
ng-checked="false"
ng-change="checkActions()"
ng-model="action.complete"
ng-disabled="contacts.length == 0" >
{{checkListEmergencyConfirmLabel}}</label>
</div>
</div>
这是按钮代码:
<button type="button" role="button" class="btn btn-primary" ng-disabled="!reviewComplete()"
ng-click="setReviewComplete()" tabindex="1">{{commitLabel}}</button>