输入字段增加值形式方法

时间:2018-12-17 19:14:33

标签: angular typescript bootstrap-4

我有问题,我有一个输入字段类型数字,当我单击以增加值时,我在priceForAllProducts属性中的值是增加。但是我也想降低点击的价值。这是我的代码:

我的HTML:

<div class="col-xs-2">
  <input type="number" id="numberOfProduct" class="form-control" placeholder="Number of product" min="1" 
    [(ngModel)]="products.numberOfProduct" (click)="setPrice( products.price)">

</div>

我的TypeScript

  setPrice( price: number) {
    this.priceForAllProducts += price;
  }

0 个答案:

没有答案