Ajax实现异步删除表格中的一行
前端body格代码
<body>
<center>
<h1>商品列表页面</h1>
<table class="table table-bordered" style="width: 80%" id="myTable">
<thead>
<tr>
<th>ID</th>
<th>品名</th>
<th>描述</th>
<th>价格</th>
<th>生产日期</th>
<th>限用日期</th>
<th>商品类别</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<c:forEach items="${pageInfo.list}" var="goods">
<tr id="${goods.id}"<