首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery 报表鼠标 变色

2012-11-05 
jquery表格鼠标 变色script typetext/javascript$(document).ready(function() {$(.frame tr).mous

jquery 表格鼠标 变色

    <script type="text/javascript">        $(document).ready(function() {                     $(".frame tr").mouseover(function() {                if ($(this).index() > 0) {                    $(this).addClass("over");                }            }).mouseout(function() {                if ($(this).index() > 0) {                    $(this).removeClass("over");                }            });        });    </script>    <style type="text/css">        td.locked {            position: relative;            left: expression(document.getElementById("divTableContainer").scrollLeft);            background-color: #8EAAE9;            z-index: 0;        }        tr.over td {            background: #bcd4ec;             cursor: pointer;        }    </style>
?

热点排行