zoukankan      html  css  js  c++  java
  • JavaScript之表格过滤器

    <!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=utf-8" />
    <title>表格过滤器</title>
    <script language="javascript" src="../MyfirstjQueryFileWord/jquery-1.10.2.js">
    </script>
    <script language="javascript">
    $(function(){
        /*
        //第一种方法
        $('.a').css('background','#f00');
        $('.b').css('background','#f0f');
        $('.c').css('background','#00f');
        $('.d').css('background','#ff0');
        $('.e').css('background','#f0f');
        */
        /*
        //第二种方法
        $('table tr:first').css('background-color','#f00');
        $('table tr:last').css('background-color','#f00');    
        $('table tr:odd').css('background-color','#f00');
        */    
        $('table tr:even').css('background-color','#f00');
        });
        
        
     /* 当鼠标移到表格上是,当前一行背景变色 */
          $(document).ready(function(){
                $(".data_list tr td").mouseover(function(){
                    $(this).parent().find("td").css("background-color","#d5f4fe");
                });
          })
          /* 当鼠标在表格上移动时,离开的那一行背景恢复 */
          $(document).ready(function(){ 
                $(".data_list tr td").mouseout(function(){
                    var bgc = $(this).parent().attr("bg");
                    $(this).parent().find("td").css("background-color",bgc);
                });
          })
    
        
        
    </script>
    </head>
    <body>
    <center>
    <table width="500" border="1" height="500">
      <tr>
        <td class="a">&nbsp;</td>
      </tr>
      <tr>
        <td class="b">&nbsp;</td>
      </tr>
      <tr>
        <td class="c">&nbsp;</td>
      </tr>
      <tr>
        <td class="d">&nbsp;</td>
      </tr>
      <tr>
        <td class="e">&nbsp;</td>
      </tr>
    </table>
    </center>
    </body>
    </html>

    不努力,还要青春干什么?
  • 相关阅读:
    测试
    扫描法作业
    线索二叉树【C语言】
    【数据结构】循环列表的基本操作
    【数据结构】C语言栈的基本操作
    [数据结构】【c语言】链表的创建和遍历
    PXC(Percona XtraDB Cluster)集群的安装与配置
    mysql数据库主从及主主复制配置演示
    基于keepalived双主模型的高可用LVS
    keepalived高可用反向代理的nginx
  • 原文地址:https://www.cnblogs.com/caidupingblogs/p/4926706.html
Copyright © 2011-2022 走看看