search
HomeWeb Front-endJS TutorialjQuery sort table titles
jQuery sort table titlesApr 26, 2018 pm 04:23 PM
jquerysortsheet

这次给大家带来jQuery对表格标题排序,jQuery对表格标题排序的注意事项有哪些,下面就是实战案例,一起来看一下。

表格大家都十分熟悉,如今的CSS也使得表格的布局越来越光彩耀人。但是,无论如何,都掩饰不了那些包装下的死板。
那么如何让那些死板的数据 更具有可读性、可用性,能够让我们那些数据在“动”呢?
下面我们使用jquery+ajax 来为表格注入些活力。主要实现的目的就是:将表格的列标题转化为按钮,点击不同的列标题,便按相应的列对数据进行排序。比如学生信息表,我点击“生日”列,这张表便按生日排序将结果呈现在我们面前。使用ajax来调用本页也避免了刷新页面所带来的折磨。
下面我给出最基本的jsp页面
jQuery sort table titles 
详细代码如下

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
<head> 
<base href="<%=basePath%>"> 
<title>My JSP &#39;sorttable.jsp&#39; starting page</title> 
<meta http-equiv="pragma" content="no-cache"> 
<meta http-equiv="cache-control" content="no-cache"> 
<meta http-equiv="expires" content="0"> 
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
<meta http-equiv="description" content="This is my page"> 
<!-- 
<link rel="stylesheet" type="text/css" href="styles.css"> 
--> 
<script type="text/javascript" src="js/jquery-1.4.4.js"></script> 
</head> 
<body> 
<table class = "sorttable" style="background-color: gray;color: white;"> 
<thead> 
<tr > 
<th></th> 
<th class="sort-alpha">Title</th> 
<th>Author</th> 
<th>PublishDate</th> 
<th>Price</th> 
</tr> 
</thead> 
<tbody> 
<tr> 
<td><img  src="/static/imghwm/default1.png"  data-src="<%=path % alt="jQuery sort table titles" >/images/javascript.jpg"  class="lazy"   width="40"    style="max-width:90%" alt="JavaScript" /></td> 
<td>JavaScript</td> 
<td> Douglas Crockford </td> 
<td> May 2008</td> 
<td>$31.02</td> 
</tr> 
<tr> 
<td><img  src="/static/imghwm/default1.png"  data-src="<%=path % alt="jQuery sort table titles" >/images/Ajax.jpg"  class="lazy"   width="40"    style="max-width:90%" alt="AJAX and PHP:Building Responsive Web Applications" /></td> 
<td>AJAX and PHP:Building Responsive Web Applications</td> 
<td>Cristian Darie,Mihak Bucica</td> 
<td> Mar 2006</td> 
<td>$31.02</td> 
</tr> 
<tr> 
<td><img  src="/static/imghwm/default1.png"  data-src="<%=path % alt="jQuery sort table titles" >/images/Learning.jpg"  class="lazy"   width="40"    style="max-width:90%" alt="Learning Mambo" /></td> 
<td>Learning Mambo</td> 
<td>Douglas Paterson</td> 
<td> Mar 2006</td> 
<td>$31.02</td> 
</tr> 
<tr> 
<td><img  src="/static/imghwm/default1.png"  data-src="<%=path % alt="jQuery sort table titles" >/images/Think.jpg"  class="lazy"   width="40"    style="max-width:90%" alt="Thinking in java" /></td> 
<td>Thinking in java</td> 
<td>Bruce Eckel </td> 
<td> Feb 2006</td> 
<td>$33.02</td> 
</tr> 
<tr> 
<td><img  src="/static/imghwm/default1.png"  data-src="<%=path % alt="jQuery sort table titles" >/images/jQuery.jpg"  class="lazy"   width="40"    style="max-width:90%" alt="jQuery in Action, Second Edition" /></td> 
<td>jQuery in Action, Second Edition</td> 
<td>Bear Bibeault / Yehuda Katz 
</td> 
<td> Apr 2010</td> 
<td>$35.02</td> 
</tr> 
</tbody> 
</table> 
</body> 
</html>

第一步:为表格添加奇偶行交替背景
jQuery sort table titles 

<style type="text/css"> 
.even{ 
background-color: #E8A824; 
} 
.odd{ 
background-color:#74411B; 
} 
</style>

第二步:按字母排序
实现基于表格的Title列进行排序

<thclass="sort-alpha">Title</th>

为Title定义了一个sort-alpha类 

<script type="text/javascript" language="javascript"> 
$(
document
).ready(function(){ 
var alternateRowColors = function($table){ 
$(&#39;tbody tr:odd&#39;,$table).removeClass(&#39;even&#39;).addClass(&#39;odd&#39;); 
$(&#39;tbody tr:even&#39;,$table).removeClass(&#39;odd&#39;).addClass(&#39;even&#39;) 
}; 
$(&#39;table.sorttable&#39;).each(function (){ 
var $table =$(this); 
alternateRowColors($table); 
$(&#39;th&#39;,$table).each(function(column){ 
var $header = $(this); 
if($header.is(&#39;.sort-alpha&#39;)){ 
$header.addClass(&#39;clickable&#39;).hover(function(){ 
$header.addClass(&#39;hover&#39;); 
},function(){ 
$header.removeClass(&#39;hover&#39;); 
}).click(function(){ 
var rows = $table.find(&#39;tbody>tr&#39;).get(); 
rows.sort(function(a,b){ 
var keyA =$(a).children(&#39;td&#39;).eq(column).text().toUpperCase(); 
var keyB =$(b).children(&#39;td&#39;).eq(column).text().toUpperCase(); 
if(keyA<keyB) return -1; 
if(keyA>keyB) return 1; 
return 0; 
}); 
$.each(rows,function(index,row){ 
$table.children(&#39;tbody&#39;).append(row); 
}); 
alternateRowColors($table); 
}); 
} 
}); 
}); 
}); 
</script>

最后
当你点击Title时
最终效果:
jQuery sort table titles 

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

tablesorter插件使用详解(附案例)

jquery实现表格分页与排序

The above is the detailed content of jQuery sort table titles. For more information, please follow other related articles on the PHP Chinese website!

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
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

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 Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool