0
我有這樣的一個表一個jsp:從排在HTML中獲得價值,並用它在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模式(這是一個彈出對話框)獲取一些信息,但我無法獲取用戶正在按的行的值。 任何幫助將有所幫助。