表格颜色隔行换色显示效果,jquery实现这个特效,鼠标经过时又显示其他颜色,自定义加亮颜色代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>jquery实现表格颜色隔行换色特效_武鸣人</title> <script type="text/javascript" src="/img/jquery_wuming_ren.js"></script> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".www_wuming_ren tr:odd").addClass("wuming_1"); jQuery(".www_wuming_ren tr:even").addClass("wuming_2"); jQuery(".www_wuming_ren tr").hover(function(){ jQuery(this).addClass("wuming_3") },function(){ jQuery(this).removeClass("wuming_3") }); });//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> <style type="text/css"> .www_wuming_ren {border:1px solid #333;text-align:center;} .www_wuming_ren th {background-color:#333; color:#FFF;} .wuming_1 {background-color:#DDD; color:#333;} .wuming_2 {background-color:#EEE; color:#333;} .wuming_3 {background-color:#666; color:#FFF;} </style> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> 需要加载js文件,请刷新页面后看效果! <table width="450" class="www_wuming_ren"> <thead> <tr> <th>武鸣人</th> <th>网页特效</th> <th>广告代码</th> </tr> </thead> <tbody> <tr> <td><a href="https://wwww.wuming.ren">武鸣人一号</a></td> <td><a href="https://wwww.wuming.ren">网页特效一号</a></td> <td><a href="https://wwww.wuming.ren">广告代码一号</a></td> </tr> <tr> <td><a href="https://wwww.wuming.ren">武鸣人二号</a></td> <td><a href="https://wwww.wuming.ren">网页特效二号</a></td> <td><a href="https://wwww.wuming.ren">广告代码二号</a></td> </tr> <tr> <td><a href="https://wwww.wuming.ren">武鸣人三号</a></td> <td><a href="https://wwww.wuming.ren">网页特效三号</a></td> <td><a href="https://wwww.wuming.ren">广告代码三号</a></td> </tr> <tr> <td><a href="https://wwww.wuming.ren">武鸣人四号</a></td> <td><a href="https://wwww.wuming.ren">网页特效四号</a></td> <td><a href="https://wwww.wuming.ren">广告代码四号</a></td> </tr> </tbody> </table> </body> </html>
本文来自武鸣人网站,转载请注明出处