- 相关推荐
如何使用jQuery5分钟快速搞定双色表格
先看看这个使用jQuery做的双色表格的效果:
这个双色表格看上去应该觉得挺专业的,不过它用jQuery实现的确很简单。
第一步:写好css。
th { /*表头样式*/ background:#0066FF; color:#FFFFFF; line-height:20px; height:30px; } td { padding:6px 11px; border-bottom:1px solid #95bce2; vertical-align:top; text-align:center; } td * { padding:6px 11px; } tr.alt td { background:#ecf6fc; /*这行将给所有的tr加上背景色*/ } tr.over td { background:#bcd4ec; /*这个将是鼠标高亮行的背景色*/ }
第二步:写jQuery页面加载事件:
$(function(){//给class为stripe的表格的偶数行添加class值为alt $(".stripe tr:even").addClass("alt"); $(".stripe tr").mouseover(function(){//如果鼠标移到class为stripe的表格的tr上时,执行函数 $(this).addClass("over");}).mouseout(function(){//给这行添加class值为over,并且当鼠标一出该行时执行函数 $(this).removeClass("over"); })});
上面的鼠标悬浮事件采用了jQuery的链式操作,本来是应该这么写的:
$(".stripe tr").mouseover(function(){ $(this).addClass("over");}) $(".stripe tr").mouseout(function(){ $(this).removeClass("over"); })
但上面的的代码却写成了这样:
$(".stripe tr").mouseover(function(){ $(this).addClass("over");}).mouseout(function(){ $(this).removeClass("over");})
在jQuery中,执行完mouseover或mouseout等方法之后,它会返回当前的操作对象,所以可以采用jQuery的链式操作。
下面把完整的jsp代码贴出来MyJsp.jsp:
<%@ page="" language="java" import="java.util.*" pageencoding="UTF-8"><%string path="request.getContextPath();String" basepath="request.getScheme()+">
$(function(){//给class为stripe的表格的偶数行添加class值为alt $(".stripe tr:even").addClass("alt"); $(".stripe tr").mouseover(function(){//如果鼠标移到class为stripe的表格的tr上时,执行函数 $(this).addClass("over");}).mouseout(function(){//给这行添加class值为over,并且当鼠标一出该行时执行函数 $(this).removeClass("over"); })});
th { background:#0066FF; color:#FFFFFF; line-height:20px; height:30px; } td { padding:6px 11px; border-bottom:1px solid #95bce2; vertical-align:top; text-align:center; } td * { padding:6px 11px; } tr.alt td { background:#ecf6fc; /*这行将给所有的tr加上背景色*/ } tr.over td { background:#bcd4ec; /*这个将是鼠标高亮行的背景色*/ }
姓名 | 年龄 | ||
---|---|---|---|
李晓红 | 24 | 859855*** | 859855***@qq.com |
云天河 | 18 | 123456789 | 123456789@qq.com |
柳梦璃 | 18 | 987654321 | 987654321@qq.com |
韩菱纱 | 18 | 888888888 | 888888888@qq.com |
玄霄 | 58 | 123456 | 123456@qq.com |
土灵珠 | 1000 | -10000 | -10000@qq.com |
怎么样呢?jQuery就是这么给力。以上这篇使用jQuery5分钟快速搞定双色表格的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考。
【如何使用jQuery5分钟快速搞定双色表格】相关文章:
如何用CAD快速画表格10-04
怎样快速搞定上班妆08-23
如何高效快速搞定雅思听力?四遍法就可以07-29
如何30分钟内搞定托福写作考试07-09
如何搞定软装10-24
Word表格快速处理的方法07-01
枸杞双色吐司的做法10-30
如何把EXCEL表格转成WORD表格02-19
如何快速增肌06-10
如何快速学习粤语08-10