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>

    不努力,还要青春干什么?
  • 相关阅读:
    欧拉回路的判断(hdu1878)其一
    最长公共子序列(不是子串)hdu1159
    线段树(hdu1166)
    记忆化搜索(hdu1078)
    分考场问题。。。
    hdu2087
    cf540C
    x86 寄存器 | DPL,RPL,CPL 之间的联系和区别
    深度学习 | 训练网络trick——mixup
    python | Argparse中action的可选参数store_true,store_false到底是什么意思?
  • 原文地址:https://www.cnblogs.com/caidupingblogs/p/4926706.html
Copyright © 2011-2022 走看看