zoukankan      html  css  js  c++  java
  • 列表中被点击的行加亮背景色

    <!doctype html>
    <html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <title>列表中被点击的行加高亮背景色</title>
        <meta name="keywords" content="" />
        <meta name="description" content="" />        
        <script type="text/javascript" src="../jquery-1.8.2.js"></script>
        <script type="text/javascript">
        //点击某行后,高亮点中行的样式
        function heightBrightTR(thisObj){        
           var thisTD = $(thisObj).parent();    //<a> 链接所在上层单元格td对象
            var thisTR = thisTD.parent();        //<a> 链接所在上层行tr对象    
            thisTR.addClass('trBgStyle');                    //添加背景高亮色
            thisTR.siblings('tr').removeClass('trBgStyle'); //将同级同胞的背景色置空
        }
        </script>
        <style type="text/css">
         .trBgStyle{background:#ffff66;}   /* 用于点击后改变行背景色 */
        </style>
    </head>
    <body>
        <table border="1" width="100%" cellspacing="0" cellpadding="0">
            <tr>
                <th>id号</th>
                <th>链接地址</th>
            </tr>
            <tr>
                <td>2</td>
                <td><a onclick="heightBrightTR(this)" target="_blank" href="http://www.google.com.hk">Google</a></td>
            </tr>
            <tr>
                <td>1</td>
                <td><a onclick="heightBrightTR(this)" target="_blank" href="http://www.baidu.com">百度</a></td>
            </tr> 
            <tr>
                <td>4</td>
                <td><a onclick="heightBrightTR(this)" target="_blank" href="http://cn.msn.com">MSN中文网</a></td>
            </tr>       
        </table>
    
    
    
    
    </body>
    </html>
  • 相关阅读:
    java 23种设计模式 深入理解
    ORACLE 一条记录 某字段值以';'拆分为多条记录
    rabbitmq集群故障恢复
    ORACLE 时间加减操作
    Asp.net MVC Razor输出字符串方法(js中嵌入razor)
    C# ToString() 数据格式
    DOM的整个知识体系
    EF 连接模式
    EF Code First 数据库连接方式
    使用border实现提示框的
  • 原文地址:https://www.cnblogs.com/martinzhang/p/3302163.html
Copyright © 2011-2022 走看看