x
 
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
  <colgroup id="myColgroup"></colgroup>
  <tr>
    <th>书号</th>
    <th>书目</th>
    <th>价格</th>
  </tr>
  <tr>
    <td>1234567</td>
    <td>HTML 教程</td>
    <td>$56</td>
  </tr>
  <tr>
    <td>7654321</td>
    <td>CSS 教程</td>
    <td>$67</td>
  </tr>
</table>
<p>单击该按钮可设置前两列的背景颜色。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("myColgroup").span = "2";
  document.getElementById("myColgroup").style.backgroundColor = "red";
}
</script>
</body>
</html>