我在我的UI中使用jQuery tablesorter。我有一個場景,我有一個2行標題的表。主標題和副標題。我想添加排序到subheader。我怎樣才能做到這一點。subHeader中的jQuery tablesorter
這是我的代碼看起來像,
<table class="grid" id="gr1" cellspacing="0" width="100%" border="1">
<tr bgcolor="#FF0000"><th class="NOBORDER" colspan="1"> </th>
<th class="NOBORDER" colspan="3">A</th>
<th class="NOBORDER" colspan="3">B</th>
<th class="NOBORDER" colspan="3">C</th>
<th class="NOBORDER" colspan="3">D</th>
<th class="NOBORDER" colspan="3">E</th>
<th class="NOBORDER" colspan="3">F</th>
</tr>
<tr>
<th>Group</th>
<th>A1</th>
<th>A2</th>
<th>A3</th>
<th>B1</th>
<th>B2</th>
<th>B3</th>
<th>C1</th>
<th>C2</th>
<th>C3</th>
<th>D1</th>
<th>D2</th>
<th>D3</th>
<th>E1</th>
<th>E2</th>
<th>E3</th>
<th>F1</th>
<th>F2</th>
<th>F3</th>
</tr>
從這個表我希望到第2行中的組列進行排序。我怎樣才能做到這一點?