BSi*_*son 6 angular angular-reactive-forms
我有一个广播组,每个选项使用相同的表单控件.是否可以仅禁用红色单选按钮?我知道您可以在颜色 表单控件上设置禁用标志,但这将禁用所有单选按钮.
<fieldset [formGroup]="colorForm">
<legend>
Choose color
</legend>
<div class="radio">
<label>
<input type="radio" value="red" formControlName="color">
Red
</label>
</div>
<div class="radio">
<label>
<input type="radio" value="green" formControlName="color">
Green
</label>
</div>
<div class="radio">
<label>
<input type="radio" value="blue" formControlName="color">
Blue
</label>
</div>
Run Code Online (Sandbox Code Playgroud)
试试这个
<input type="radio" [attr.disabled]="propertyName === false || null""
value="red" formControlName="color">
Run Code Online (Sandbox Code Playgroud)
propertyName即value来自components.ts文件
| 归档时间: |
|
| 查看次数: |
2847 次 |
| 最近记录: |