1
我是新來的thymeleaf,我試圖爲tr
創建id並獲取動態行。Thymeleaf-爲表格行創建動態ID
成功獲取表格行,但我不知道熱的創建每行thymeleaf id。
<table class="table table-hover" id="table">
<thead style="background-color:#CCE5FF">
<tr>
<th>ID</th>
<th>Code</th>
<th>Created Date</th>
<th></th>
</tr>
</thead>
<tbody>
<tr th:each="emp,iterStat : ${empList}">
<td th:text="${emp.id}">ID</td>
<td th:text="${emp.mdrcode}">Code</td>
<td th:text="${emp.createDate}">Created Date</td>
<td><a id="editview" class="btn btn-sm btn-default" th:href="@{/}"><i class="fa fa-edit"></i> View</a></td>
</tr>
</tbody>
</table>
謝謝它的正常工作。但是顯示這個的任何可能性都是在使用jquery的alert框中? – Durga
你可以給這些'tr'標籤添加一個類,給它們添加一個點擊監聽器,並使用'.attr('id')來獲取id。 –