我有一张表,我必须在其中替换加载时表的标签。下面是我的表的结构:
<table>
<tbody>
<tr>
<th>
<label for="id_first_name">Nombre:</label>
</th>
</tr>
<tr>
<th>
<label for="id_last_name">Apellido</label>
</th>
</tr>
<tr>
<th>
<label for="id_email">email</label>
</th>
</tr>
<tr>
<th>
<label for="id_password">njnjnj</label>
</th>
</tr>
</tbody>
</table>
像这样我需要更换
名词
和
姓名
和其他标签也
负载。请建议我该怎么做。