<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();
  })
})

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js