如何在按钮单击时添加新功能

时间:2018-06-26 04:52:34

标签: angular angular6

我在td中有一个ngClass,条件如下:

<tr>
    <td [ngClass]="{active: !show, inactive: show}"></td>
    <td></td>
</tr>

此ngClass在按钮单击功能上被激活,如下所示:

<button type="reset" class="btn btn-primary" (click)="show = !show">Play</button>

现在,我必须在此按钮单击上添加功能。如何添加?

1 个答案:

答案 0 :(得分:3)

使用;向事件添加多个功能。

(click)="show = !show; yourFunction()"