作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下 btn 组:
<div class="btn-group">
<label class="btn btn-primary" [(ngModel)]="type" btnRadio="{{myType.A}}" name="A" ngDefaultControl>A</label>
<label class="btn btn-primary" [(ngModel)]="type" btnRadio="{{myType.B}}" name="B" ngDefaultControl>B</label>
</div>
MyType 是一个枚举:
export enum MyType {
A, B
}
这是组件:
@Component({
selector: 'add-record',
templateUrl: './add-record.component.html',
styleUrls: ['./add-record.component.css']
})
export class AddRecordComponent implements OnInit {
type: MyType;
myType = MyType;
constructor() { }
ngOnInit() {
this.type = MyType.A;
}
}
如您所见,类型的初始值为 MyType.A 所以我希望第一个按钮处于事件状态,但事实并非如此。
我希望:
我有:
最佳答案
您必须将“事件”类添加到其中一个标签:
<div class="btn-group">
<label class="btn btn-primary" [(ngModel)]="type" [class.active]="type=myType.A" btnRadio="{{myType.A}}" name="A" ngDefaultControl>A</label>
<label class="btn btn-primary" [(ngModel)]="type" [class.active]="type=myType.B" btnRadio="{{myType.B}}" name="B" ngDefaultControl>B</label>
</div>
关于angular - btn-group - btnRadio 初始值由枚举完成,不激活按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41552103/
我有以下 btn 组: A B MyType 是一个枚举: export enum MyType { A, B } 这是组件: @Component({ sel
我正在尝试在 angular 2 rc2 种子项目中使用 ng2-bootstrap 单选按钮。以下代码在我们的 angular 2 rc1 项目中没有任何问题。现在,我正在尝试使用 https://
我是一名优秀的程序员,十分优秀!