嗨,我的系统由一个 spring maven 项目组成,它包含一个父列表,它通过th:each使用 thymeleaf 模板引擎显示在 html 页面中 ,问题是它只在第一个按钮上工作,它在我试过的其余按钮上不起作用下面的代码
脚本
$(document).ready(function(){
$("#button").attr("name").click(function(){
alert($(this).attr("name"));
});
});
带有 thymeleaf 迭代器的表
<table class="table">
<tr>
<th>Parent Name</th>
<!-- <th>Country</th> -->
<!-- <th>State</th>
<th>District</th> -->
<th>Address</th>
<th>Phone No</th>
<th>Email</th>
<th>Active/Inactive</th>
<th></th>
</tr>
<tr th:each=" parent : ${parentList}">
<td th:text="${parent.parentName}"></td>
<!-- <td th:text="${parent.district.state.country.countryName}"></td> -->
<!-- <td th:text="${parent.district.state.stateName}"></td>
<td th:text="${parent.district.districtName}"></td> -->
<td th:text="${parent.parentAddress}"></td>
<td th:text="${parent.parentPhone}"></td>
<td th:text="${parent.parentEmail}"></td>
<td><a id="button" href="#" class="btn btn-small"
th:value="${parent.id}" th:name="${parent.id}" th:text="${parent.id}"></a></td>
</tr>
</table>