x
 
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<p>单击按钮可从表格行中的索引位置 1 删除单元格。</p>
<table>
  <tr id="myRow">
    <td>第一单元格 (索引 0)</td>
    <td>第二单元格 (索引 1)</td>
    <td>第三单元格 (索引 2)</td>
  </tr>
</table><br>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  var row = document.getElementById("myRow");
  row.deleteCell(1);
}
</script>
</body>
</html>