search
HomeWeb Front-endJS Tutorialjs code for sorting table data in html_javascript skills

By the way, pay attention to the innerText and innerHTML

Copy code The code is as follows:

function sortCells(event ) {
var obj = event.target;
var count = 0; count records the number of clicks, in ascending or descending order according to odd and even
if(!obj.getAttribute("clickCount")){
obj.setAttribute("clickCount", 0);
} else {
count = parseInt(obj.getAttribute("clickCount"));
count ;
obj.setAttribute("clickCount ", count);
}
var table = event.target.parentNode.parentNode;
if(table.nodeName.localeCompare("THEAD") == 0){
if(table. parentNode.nodeName.localeCompare("TABLE") == 0){
table = table.parentNode;
} else {
return;
}
} else if(table.nodeName. localeCompare("TBODY") == 0){
if(table.parentNode.nodeName.localeCompare("TABLE") == 0){
table = table.parentNode;
} else {
return;
}
} else if(table.nodeName.localeCompare("TABLE") == 0){
} else {
return;
}
var colNum;
for(x = 0; x if(event.target.innerText.localeCompare(table.rows(0).cells[x] .innerText) == 0){
colNum = x;
break;
}
}
var column = table.rows(1).cells.length;
var row = table.rows.length;
var Ar = new Array(row - 1);
for (x = 0; x Ar[x] = new Array (column);
}
for (x = 1; x for (y = 0; y Ar[x - 1 ][y] = table.rows(x).cells(y).innerHTML;
}
}
    ///This can perform localized sorting of strings
/* if((count %2) == 0){
Ar.sort(function(a, b) {
return b[colNum].localeCompare(a[colNum])
});
} else {
Ar.sort(function(a, b) {
return a[colNum].localeCompare(b[colNum])
});
} */
var temp;
for (x = 0; x for (y = 1; y temp = Ar[y - 1];
if((count % 2) == 0){
if (parseInt(Ar[y - 1][colNum]) >= parseInt(Ar[y][colNum])) {
Ar[ y - 1] = Ar[y];
Ar[y] = temp;
}
} else {
if (parseInt(Ar[y - 1][colNum]) Ar[y - 1] = Ar[y];
Ar[y] = temp;
}
}
}
}
for (x = 1; x for (y = 0; y table.rows(x).cells(y ).innerHTML = Ar[x - 1][y];
}
}
count ;
}
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何访问ET文件如何访问ET文件Feb 18, 2024 pm 08:46 PM

ET文件是一种非常常见的文件格式,它通常是由WPS软件中的表格编辑器生成的。在接触ET文件之前,我们可以先了解一下什么是ET文件,然后讨论如何打开和编辑它们。ET文件是WPS表格软件的文件格式,类似于MicrosoftExcel中的XLS或XLSX文件。WPS表格是一款功能强大的电子表格软件,提供了类似Excel的功能,可以进行数据处理、数据分析和图表创建

PHP表单处理:表单数据排序与排名PHP表单处理:表单数据排序与排名Aug 09, 2023 pm 06:01 PM

PHP表单处理:表单数据排序与排名在Web开发中,表单是一种常见的用户输入方式。当我们收集到来自用户的表单数据后,通常需要对这些数据进行处理和分析。本文将介绍如何使用PHP对表单数据进行排序与排名,以便更好地展示和分析用户提交的数据。一、表单数据排序当我们收集到用户提交的表单数据后,可能会发现这些数据的顺序不一定符合我们的要求。而对于需要按照特定规则展示或分

如何通过PHP多线程提高大规模数据排序的速度如何通过PHP多线程提高大规模数据排序的速度Jun 29, 2023 pm 04:15 PM

如何通过PHP多线程提高大规模数据排序的速度随着互联网的高速发展和大数据的普及,对于处理海量数据的需求也越来越大。其中,对于数据排序这一常见问题,如何提高处理速度成为了一个亟待解决的问题。在PHP领域,多线程技术被认为是一种有效的解决方案。本文将介绍如何通过PHP多线程提高大规模数据排序的速度。一、多线程的原理多线程是指同时存在多个线程,多个线程可同时执行不

char在mysql中的用处char在mysql中的用处Apr 27, 2024 am 09:09 AM

CHAR 数据类型在 MySQL 中用于存储固定长度的文本数据,可确保数据一致性、提高查询性能。该类型规定了数据长度,介于 0 到 255 个字符之间,长度在创建表时指定,并且对于同一列的所有行保持不变。对于可变长度的数据,建议使用 VARCHAR 类型。

如何通过索引优化PHP与MySQL的数据排序和数据分组的效率?如何通过索引优化PHP与MySQL的数据排序和数据分组的效率?Oct 15, 2023 pm 04:00 PM

如何通过索引优化PHP与MySQL的数据排序和数据分组的效率?在开发Web应用过程中,经常需要对数据进行排序和分组操作。而对于PHP与MySQL之间的数据排序和数据分组操作,我们可以通过索引来优化其效率。索引是一种数据结构,用于提高数据的检索速度。它可以加快数据的排序、分组以及查找操作。下面我们将介绍如何通过索引来优化PHP与MySQL的数据排序和数据分组的

如何查看oracle数据库内容如何查看oracle数据库内容Apr 19, 2024 am 02:57 AM

查看 Oracle 数据库内容有多种方法:SQL Developer:图形化工具,用于查询、浏览和管理数据库内容。SQL Plus:命令行工具,用于执行 SQL 命令。Toad:商业工具,用于查看、管理和开发数据库。SQL 查询:可以使用 select、where、group by 和 order by 等 SQL 查询来查看特定数据。

详解Java选择排序算法的实现方法详解Java选择排序算法的实现方法Feb 20, 2024 am 10:47 AM

Java选择排序法代码详解与实现方法选择排序法(SelectionSort)是一种简单直观的排序算法,它的基本思想是每一趟从待排序的数据元素中选出最小(或最大)的一个元素,放在序列的起始位置,直到全部待排序的数据元素排完为止。选择排序法的主要优点是思想简单,实现容易,而且不需要额外的存储空间,因此在一些简单的排序问题上表现出良好的性能。下面我们详细解释选择

Aptos价格预测2024-2030Aptos价格预测2024-2030Mar 20, 2024 am 11:35 AM

截至 2023 年 7 月,尽管市场动荡和持续的熊市趋势,Aptos 仍排名第 35 位。尽管其价值下降,但突破其长期模式可能会导致短期反弹。市场状况将极大地影响 APT 的进展,预计到 2024 年平均价格为 16.6 美元。预计 2025 年的技术进步暗示了 Aptos 的光明未来。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),