如果输入长度小于3,则禁用按钮

时间:2016-12-23 14:33:10

标签: angular typescript angular2-template

如果输入长度小于3

,我想停用按钮:

 <input type="text" [(ngModel)]="newListItem">
 <button [disabled]="{ disabled : newListItem.length < 3 }"></button>

但是这段代码不起作用。我怎样才能实现目标?

2 个答案:

答案 0 :(得分:12)

您只需要将表达式传递给disabled属性,就不需要创建对象:

<button [disabled]="newListItem.length < 3"></button>

答案 1 :(得分:0)

试试这个: