您如何更改行中的值以根据另一行的值更新负载?
例如,在我的表中,我有一个名为Room Allocation的列和另一个名为Action的列。如果行值Room Allocation列设置为 Pending ,那么我希望Action下特定行的按钮是Edit和Cancel,但如果是其他任何东西(即不是 Pending),那么按钮应该是Edit和Decline。
我怎样才能使用 jQuery 来做到这一点?下面是我的代码,我在这里包含了一个小提琴:
<table id="home_tbl">
<thead>
<tr>
<th>Module Code</th>
<th>Day</th>
<th>Start Period</th>
<th>Length</th>
<th>Room Preference</th>
<th>Room Allocation</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- dummy data starts here -->
<tr>
<td>COA101</td>
<td>Tuesday</td>
<td>11:00</td>
<td>2 hours</td>
<td>B.1.11</td>
<td>Pending</td>
<td><button class="cupid-green">Edit</button>
<button class="cupid-green">Cancel</button></td>
</tr>
<tr>
<td>COA201</td>
<td>Monday</td>
<td>10:00</td>
<td>1 hours</td>
<td>J001</td>
<td>J001</td>
<td><button class="cupid-green">Edit</button>
<button class="cupid-green">Cancel</button></td>
</tr>
<!-- dummy data ends here -->
</tbody>
</table>