Angular 4代码,用于计算按钮的点击次数

时间:2018-02-20 06:01:27

标签: angular

我有一张桌子,我想计算一个按钮的点击次数。并且数字是添加列。 我试图搜索,但我没有得到角4的代码

1 个答案:

答案 0 :(得分:1)

<button (click)="clickCount()">click</button>

{{count}} //打印任意地点

编写一个函数int component

count: number = 0; declare before constructor


   clickCount(): void{
        this.count++
        }