我想使下面的HTML表中的“名称”列元素触发点击事件。
我添加了如下的角度单击表达式活页夹。我在下面缺少什么?
<table class="table table-hover">
<thead class="thead-dark">
<tr>
<th>Name</th>
<th>Address</th>
<th>Description</th>
<th>Is active?</th>
<th>Owned User Id</th>
<th>Display Id</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let venue of venues[0]">
<td (click)="onVenueNameClick()">{{venue.name}}</td>
<td>{{ven.addr}}</td>
<td>{{ven.desc}}</td>
<td>{{ven.isact}}</td>
<td>{{ven.userid}}</td>
<td>{{ven.displayid}}</td>
</tr>
</tbody>
</table>