当我在html code中将此代码<th colspan="2">Position</th>
与数据表一起使用时。
行号无法显示。为什么?
当我使用此功能时:
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Salary</th>
</tr>
</thead>
但是当我使用这个时:
<thead>
<tr>
<th></th>
<th>Name</th>
<th colspan="2">Position</th>
<th>Age</th>
<th>Salary</th>
</tr>
</thead>