为html表实现数字排序?

时间:2015-09-09 12:55:30

标签: javascript html sorting

有人可以帮我修改此代码以支持数字排序。目前它只支持按字母顺序排序,我自己也不是js作家,我在网上找到了这个。我只需要它来排序数字,而不是按字母顺序排列。

奖励:是否有可能使其支持数字和字符串

以下是按字母顺序排序的工作链接。 jsfiddle.net

谢谢。

function sortTable(table, col, reverse) {
    var tb = table.tBodies[0], // use `<tbody>` to ignore `<thead>` and `<tfoot>` rows
        tr = Array.prototype.slice.call(tb.rows, 0), // put rows into array
        i;
    reverse = -((+reverse) || -1);
    tr = tr.sort(function (a, b) { // sort rows
        return reverse // `-1 *` if want opposite order
            * (a.cells[col].textContent.trim() // using `.textContent.trim()` for test
                .localeCompare(b.cells[col].textContent.trim())
               );
    });
    for(i = 0; i < tr.length; ++i) tb.appendChild(tr[i]); // append each row in order
}

function makeSortable(table) {
    var th = table.tHead, i;
    th && (th = th.rows[0]) && (th = th.cells);
    if (th) i = th.length;
    else return; // if no `<thead>` then do nothing
    while (--i >= 0) (function (i) {
        var dir = 1;
        th[i].addEventListener('click', function () {sortTable(table, i, (dir = 1 - dir))});
    }(i));
}

function makeAllSortable(parent) {
    parent = parent || document.body;
    var t = parent.getElementsByTagName('table'), i = t.length;
    while (--i >= 0) makeSortable(t[i]);
}

window.onload = function () {makeAllSortable();};

3 个答案:

答案 0 :(得分:2)

这适用于字符串和数字

if(!isNaN(a.cells[col].textContent) && !isNaN(b.cells[col].textContent))
        return reverse * ((+a.cells[col].textContent) - (+b.cells[col].textContent))
       return reverse // `-1 *` if want opposite order
            * (a.cells[col].textContent.trim() // using `.textContent.trim()` for test
                .localeCompare(b.cells[col].textContent.trim())
               );

https://jsfiddle.net/oqr0mjc6/3/

答案 1 :(得分:1)

您应该将比较代码更改为

return reverse * ((+a.cells[col].textContent) - (+b.cells[col].textContent))

Javascript中的一元+可用于将字符串转换为其数值。

对包含数字和非数字的单个列进行排序比较棘手,因为您需要建立传递排序标准...例如:

  • 所有类似数字的字符串都在其他字符串之前
  • 类似数字的字符串根据数值
  • 排序
  • 其他字符串按字母顺序排序

代码:

function xcmp(a, b) {
    if (isNan(a)) {
       if (isNan(b)) {
           return a.localeCompare(b);
       } else {
           return +1; // a non-numeric, b numeric: a > b
       }
    } else {
       if (isNan(b)) {
           return -1; // a numeric, b non-numeric: a < b
       } else {
           return a - b;
       }
    }
}

更简单的标准,例如“如果两者都是数字,则将它们作为数字进行比较,否则将其作为字符串”,因为

  • “2”&lt; “10”
  • “10”&lt; “10A”
  • “10a”&lt; “2”

即。你可以创建逻辑“循环”,排序的概念没有意义。

答案 2 :(得分:0)

在排序功能中,您可以尝试将a.cells[col].textContent.trim()转换为数字。如果它不是一个数字,你可以用lexiografically比较它,否则你比较数字