0

我通过将表绑定到数组来生成一个非常简单的表。我使用contenteditable="true"所以我可以在客户端编辑每个单元格数据。这是我的代码:

<table class="table">
  <tr>
    <th>Id</th>
    <th>Value</th>
    <th></th>
  </tr>
  <tr *ngFor="let item of keys">
    <td>{{ item.id }}</td>

    <td contenteditable="true">
      {{ item.Value }}
    </td>
    <td>
      <button type="button" (click)="printContent()" class="btn btn-primary">Print</button>
    </td>
  </tr>
</table>

如何检测contenteditable设置为true的单元格上的文本更改

4

0 回答 0