使用JavaScript的sort()方法来对表格进行排序,针对需要排序的子项再使用localeCompare()方法对字符串进行比较。
以下是示例代码:
HTML代码:
Name | Age | Country |
---|---|---|
John | 20 | USA |
Alice | 25 | Canada |
Bob | 30 | UK |
JavaScript代码: function sortTable(n) { var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0; table = document.getElementById("myTable"); switching = true; dir = "asc"; while (switching) { switching = false; rows = table.rows; for (i = 1; i < (rows.length - 1); i++) { shouldSwitch = false; x = rows[i].getElementsByTagName("td")[n]; y = rows[i + 1].getElementsByTagName("td")[n]; if (dir == "asc") { if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { shouldSwitch = true; break; } } else if (dir == "desc") { if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) { shouldSwitch = true; break; } } } if (shouldSwitch) { rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; switchcount ++; } else { if (switchcount == 0 && dir == "asc") { dir = "desc"; switching = true; } } } }
在HTML中的表格标签中添加onclick事件,将需要排序的列的索引传递到sortTable()函数中。函数中的核心是while循环,一遍遍地比较表格中相邻的两行,并根据需要切换它们的位置。在比较字符串时,使用localeCompare()方法代替普通的字符串比较。最终
下一篇:表格指令用于行和单元格