隔行变色以及单双行变色,鼠标一入一出变色

 1 <!DOCTYPE html>
 2 <html>
 3   <head>
 4        <script type = "text/javascript" src = "js/jquery/easyui-1.3.0/jquery-1.7.2.min.js"></script>
 5        <script type = "text/javascript">
 6              $(document).ready(function(){
 7                   //鼠标移入该行和鼠标移除该行的事件
 8                   $("#aa li").mouseover(function(){
 9                         $(this).addClass("over");
10                   }).mouseout(function(){
11                        $(this).removeClass("over");
12                   });
13                 //为表格的奇偶行设定不同的颜色
14                  $("#aa li:even").addClass("even");
15                  $("#aa li:odd").addClass("odd");
16                 //鼠标点击事件
17                 $("#aa li").bind("click",function(){
18                         $("#aa li").removeClass("click");
19                         $(this).addClass("click");
20                 });
21
22          });
23   </script>
24   <style>
25         .even{
26             background:#CCFFCC;
27         }
28        .odd{
29            background:#ffffff;
30         }
31       .over{
32           background:#66CCFF;
33        }
34      .click{
35          background:Aqua;
36       }
37   </style>
38
39  </head>
40  <body>
41     <ul id="aa">
42      <li><a class="a">111</a></li>
43      <li><a class="a">222</a></li>
44      <li><a class="a">222</a></li>
45      <li><a class="a">222</a></li>
46      <li><a class="a">222</a></li>
47     </ul>
48  </body>
49 </html>

时间: 2024-10-03 04:05:53

隔行变色以及单双行变色,鼠标一入一出变色的相关文章

table 控制单双行颜色以及鼠标hover颜色 table光棒

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="

设置表格单双行颜色

<script type="text/javascript"> $(document).ready(function () { $("table").attr("bgColor", "#222222"); //设置表格的背景颜色 $("tr").attr("bgColor", "#3366CC"); //为单数行表格设置背景颜色 $("tr:ev

html table单双行颜色间隔(转载)

直接上代码: 1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html; charset=gb3212"> 4 <title>单双行显示不同颜色</title> 5 <script type="text/javascript"> 6 window.onload = function color

Gridview单双行

.table01_singlar        {            background-color: #FFFFFF;        }.table01_double        {            background-color: #e5eaf0;        } OnRowDataBound="gvData_RowDataBound" protected void gvData_RowDataBound(object sender, GridViewRowEve

Js实现table单双行交替色

依稀记得,当初我刚学编程的时候还学过怎么实现表格单双行交替色,现如今早已记不清当时的实现思路,这两天突然想起,没事就自己写了一小段代码,也不知道是否是当年的思路,不过不用纠结这个问题.:) 代码很简单,利用纯Js实现表格单双行交替色. //Js实现表格单双行交替色 function SetTrColor(tableId) { var table = document.getElementById(tableId);//根据table的 id 属性值获得对象 var rows = table.ge

js改变,设置table单双行颜色,jquery改变,设置table单双行颜色

1.js实现单双行以不同颜色显示 $(document).ready(function () { var color = "#ffeab3"; $("#GvList tr:odd td").css("background-color", color); //改变偶数行背景色 $("#GvList tr:odd").attr("bg", color); $("#GvList tr:even"

css单双行样式

#random_box li:nth-child(odd) {//双行 background: #fff5c4; } #random_box li:nth-child(even) {//单行 background: #ffeb8c; }

PB中datewindow单双行显示不同颜色

调出datewindow,找到detail中的列,右击properties,左侧Background中的color属性添加 IF(MOD(GETROW(),2)=0,RGB( 255, 250, 205), RGB(255, 255, 255)) 看图:

table行随鼠标变色

table行随鼠标变色 1.设计表格 <body class="html_body"> <div class="body_div"> <table id="tab"> <tr style="background: #000000;color: #FFFFFF;font-weight: bolder;"> <th>工号</th> <th>姓名&l