你好,所以我做到了,當我點擊'衰退'按鈕它會淡出'td',它的工作原理,但它只適用於第一個,我的意思是如果還有更多<td>
其中含有較多的 '下降' 按鈕,它不會工作,只適用於第一個按鈕Javascript按鈕淡出淡出父類只有一次工作
代碼: JAVASCRIPT
$(function() {
$("#declinebutton").click(function() {
$(this).closest('td').fadeOut();
});
});
HTML:
<tr>
<td>
Username
</td>
<td>
<button type="button" class="btn btn-danger" name="declinebutton" id="declinebutton">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> Decline request
</button>
</span>
</td>
</tr>
它的工作原理應該如此。 ID是唯一的,你應該使用類選擇器代替 –