单选按钮焦点在打字稿/角度2

时间:2017-09-20 17:05:42

标签: angular typescript angular-material2

如何让单选按钮聚焦在标签上并在点击输入角度2时被选中?

<div class="radio-group-container">
    <md-radio-group class="radio-group" [(ngModel)]="choice" tabIndex="11" (click)="radioClick()" disableRipple>
        <md-radio-button class="radio-button" *ngFor="let choice of choices" [value]="choice" tabIndex="13" disableRipple>{{choice}}</md-radio-button>
    </md-radio-group>
</div>

1 个答案:

答案 0 :(得分:0)

使用您创建的所有单选按钮在代码中具有相同的tabIndex。尝试用

替换它
<md-radio-button class="radio-button" *ngFor="let choice of choices; let i=index" [value]="choice" tabIndex="index" disableRipple>{{choice}}</md-radio-button>
相关问题