- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>ghcolor.html</title>
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="this is my page">
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <script type="text/javascript" src="./js/jquery-1.4.4.js"></script>
- <script type="text/javascript">
- $(function(){
- $("tr:even").addClass("even");//基数行
- $("tr:odd").addClass("odd");//偶数行
- $("tr:even").hover(
- function(){
- clr = $(this).css("background-color");
- $(this).css("background-color","red");
- },function(){
- $(this).css("background-color",clr);
- }
- );
- $("tr:odd").hover(
- function(){
- clr = $(this).css("background-color");
- $(this).css("background-color","blue");
- },function(){
- $(this).css("background-color",clr);
- }
- );
- });
- </script>
- <style type="text/css">
- .even{
- background-color:gray;
- }
- .odd{
- background-color:green;
- }
- </style>
- </head>
- <body>
- <table>
- <thead>
- <tr>
- <th>序号</th>
- <th>姓名</th>
- <th>昵称</th>
- <th>性别</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>1</td>
- <td>陈志明</td>
- <td>GoodWell</td>
- <td>男</td>
- </tr>
- <tr>
- <td>2</td>
- <td>陈志明</td>
- <td>GoodWell</td>
- <td>男</td>
- </tr>
- <tr>
- <td>3</td>
- <td>陈志明</td>
- <td>GoodWell</td>
- <td>男</td>
- </tr>
- <tr>
- <td>4</td>
- <td>陈志明</td>
- <td>GoodWell</td>
- <td>男</td>
- </tr>
- </tbody>
- </table>
- </body>
- </html>