<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<colgroup id="myColgroup" span="2" style="background:red"></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>单击该按钮可返回 colgroup 元素的 span 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myColgroup").span;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>