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>

    不努力,还要青春干什么?
  • 相关阅读:
    [Tips]:SQL server 2005 Create Assembly Failed
    [Tips]:JavaScript命名空间
    卓有成效的程序员之笔记与实践
    Culture List
    Windows Azure CloudBlobContainer.CreateIfNotExist : One of the request inputs is out of range.
    Failed to add FS to collection at ResourceService.SetResource in Map 3D 2013
    ADO.net DataTable 和Amazon SimpleDB的相互转换
    对MapGuide/AIMS进行压力测试StressTest并进行性能优化
    AIMS/MapGuide API二次开发从入门到精通视频课程系列3
    创建Visual Studio项目模版向导的几篇参考文章
  • 原文地址:https://www.cnblogs.com/caidupingblogs/p/4926706.html
Copyright © 2011-2022 走看看