为什么在表中使用“ colspan”,数据表无法显示行号?

时间:2018-08-02 03:03:37

标签: jquery datatables

当我在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>

可以显示行号。 enter image description here

但是当我使用这个时:

    <thead>
        <tr>
            <th></th>
            <th>Name</th>
            <th colspan="2">Position</th>
            <th>Age</th>
            <th>Salary</th>
        </tr>
    </thead>

行号无法显示。 enter image description here

0 个答案:

没有答案