我尝试使用此插件http://www.terrill.ca/sorting/对某些表进行排序。我面临的问题是我无法用价格对列进行排序,因为我无法想到它的情况。我的表看起来像这样:
HTML
<table>
<thead>
<tr>
<th>Payment</th>
<th abbr="number">Products</th>
<th abbr="strong_column">Total sum</th>
</tr>
</thead>
<tbody>
<tr>
<td>Card</td>
<td>20</td>
<td><strong>20,00</strong> euro</td>
</tr>
<tr>
<td>Cash</td>
<td>30</td>
<td><strong>60,00</strong> euro</td>
</tr>
<tr>
<td>Card</td>
<td>40</td>
<td><strong>7 000,00</strong> euro</td>
</tr>
<tr>
<td>Cash</td>
<td>50</td>
<td><strong>1 120,00</strong> euro</td>
</tr>
</tbody>
</table>
我用JS
尝试了这个案例case "strong_column":
get = function(index){
return getCell(index).childNodes[0].nodeValue;
};
break;