web 的table表格

<table border="1px">
<thead>表名</thead>
此处为表头
<tr>
<th>id</th>
<th>name</th>
<th>password</th>
<tbody>
</tr>
  普通文本行,td为单元格内容,第一行
<tr>
<td>{{k.id}}</td>
<td>{{ k.name}}</td>
<td>{{ k.password }}</td>
</tr>
<tbody>
</table>
原文地址:https://www.cnblogs.com/zhangte03/p/11161065.html