一直在寻找如何使用Jquery tablesorter插件(http://mottie.github.com/tablesorter/docs/#Introduction)对混合数字进行排序
按总计排序时,显示如下:
170.5
65.5
63.5
505
263
218
187
所以基本上atm插件只是忽略了“。”如果我错过了某个地方的答案,请记住这个号码1705。
答案 0 :(得分:0)
我会检查你的号码周围的空白,这些空格可能会让桌子们认为它们是字符串。请参阅this example - 当像这样运行时,它会正确排序:
<table id="tablesorter" class="tablesorter">
<thead>
<tr>
<th>Mixed Numbers</th>
</tr>
</thead>
<tbody>
<tr>
<td>170.5</td>
</tr>
<tr>
<td>65.5</td>
</tr>
<tr>
<td>63.5</td>
</tr>
<tr>
<td>505</td>
</tr>
<tr>
<td>263</td>
</tr>
<tr>
<td>218</td>
</tr>
<tr>
<td>187</td>
</tr>
</tbody>
</table>
$(function () {
$("#tablesorter").tablesorter({
theme: 'blue',
widgets: ['zebra']
});
});