我在Java中,這兩個對象:jQuery的 - 一個表追加到TR表
Person.java
public class Person {
String name;
String surname;
List<PersonDetails> details;
//Constructor and getter-setter methods
...
}
PersonDetails.java
public class PersonDetails {
int age;
String city;
//Constructor and getter-setter methods
...
}
創建Person Object的列表並將其放入會話中。
前端側我創造,我顯示列表的表:
<table id="myTable">
<thead>
<tr>
<th>Detail</th> <!-- this is a button -->
<th>Name</th>
<th>Surname</th>
</tr>
</thead>
<tbody>
<tr th:each=" p : ${listPerson}">
<td></td>
<td>${p.name}</td>
<td>${p.surname}</td>
</tr>
</tbody>
就像你可以看到有對錶中的每個p沒有詳細信息列表的痕跡。因爲,我會這樣做,當我點擊詳細信息按鈕時,一個包含詳細信息列表的新表被添加到該行(p)。
像這樣:
我不是讓你產生代碼,我問一些想法做到這一點。有這種情況下的任何插件?
我不能使用模態,因爲客戶想要一個新的表格來獲取細節。 – Dave