JQuery:tablesorter如果tbody不';与订单不符

JQuery:tablesorter如果tbody不';与订单不符,jquery,tablesorter,Jquery,Tablesorter,我的问题与此类似:,但我的表的结构是: <table id="myTable"> <theader> <tr> <th>Reference</th> <th>Description</th> <th>State</th> <th>Description</th>

我的问题与此类似:,但我的表的结构是:

<table id="myTable">
<theader>
    <tr>  
        <th>Reference</th>
        <th>Description</th>
        <th>State</th>
        <th>Description</th>            
    </tr>
</theader>
<tbody>
    <tr>
        <td colspan="2">111</td>            
        <td colspan="2">Ok</td>
    </tr>        
</tbody>

有人能帮我吗?谢谢

将问题标题合并到一个单元格中

<table id="myTable">
 <theader>
    <tr>  
        <th colspan='2'>Reference / Description</th>
        <th colspan='2'><div>State / Description</th>            
    </tr>
 </theader>
 <tbody>
    <tr>
        <td colspan="2">111</td>            
        <td colspan="2">Ok</td>
    </tr>        
 </tbody>

参考/说明
状态/说明
111
好啊

谢谢您的帮助。我按照你的建议做了,但现在我有另一个问题:
<table id="myTable">
 <theader>
    <tr>  
        <th colspan='2'>Reference / Description</th>
        <th colspan='2'><div>State / Description</th>            
    </tr>
 </theader>
 <tbody>
    <tr>
        <td colspan="2">111</td>            
        <td colspan="2">Ok</td>
    </tr>        
 </tbody>