<div class="container">
<table class="table">
<tbody>
<tr class="border-bottom-0">
<th scope="row">
<button class="btn btn-danger">刪除</button>
</th>
<td>產品一</td>
</tr>
<tr>
<th scope="row">
<button class="btn btn-danger">刪除</button>
</th>
<td>產品二</td>
</tr>
<tr>
<th scope="row">
<button class="btn btn-danger">刪除</button>
</th>
<td>產品三</td>
</tr>
</tbody>
</table>
</div>
$(document).ready(function(){
$('.btn').click(function(){
$(this).parent().parent().remove();
})
})