我使用 thymeleaf 迭代 html 中的 td 值。我创建的网页使得 td 的每个迭代元素都有 view,approve.disapprove 按钮。现在,当用户按下 VIEW 按钮时,我需要访问与其对应的特定 td 值。关于如何在 javascript 中访问 td 值的任何解决方案。?
我目前在js中使用这个。但它返回整个列表值。不是特定的值。
var r = $("#testing #InputRuleName").text();
alert(r);
网页设计:
<ol>
<table id="testing">
<tr th:each="RuleNameList : ${model.RuleNameList}">
<br/>
<br/>
<li> <td th:id="InputRuleName" th:text="${RuleNameList}" />
<button type="button" onclick="sendresponse()" id="view">VIEW</button>
<button type="button" onclick="sendresponse()" id="Approve">APPROVE</button>
<button type="button" onclick="sendresponse()" id="DisApprove">DISAPPROVE</button> </li>
<br/>
</tr>
</table>
</ol>
慕田峪9158850
catspeake
大话西游666
相关分类