我有一个像这样的表的jsp:
<table style="width:100%">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Adress</th>
<tr>
</thead>
<tbody>
//here is a loop filling the table
<tr data-toggle="modal" data-target="#modal">
<div>
<td>${id}</td>
<td>${name}</td>
<td>${adress}</td>
</div>
<tr>
</tbody>
</table>
所以我想使用模态中的表中的id(它是一个弹出对话框)来获取一些信息,但我无法获得用户按下的行的值。 任何帮助都会有所帮助。
答案 0 :(得分:0)
我建议使用javascript来做到这一点。您可以将onclick
事件添加到div中,其中行的ID作为参数传递给javascript函数。那个功能然后打开模态对话框。
<div onclick="openPopup(${id})">