欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Jquery 實(shí)現(xiàn)表格顏色交替變化鼠標(biāo)移過顏色變化實(shí)例

 更新時(shí)間:2013年08月28日 16:52:38   作者:  
Jquery 實(shí)現(xiàn)表格顏色交替變化,點(diǎn)擊選中行,鼠標(biāo)移過顏色變化效果附演示代碼 ,喜歡的朋友可以參考下
Jquery 實(shí)現(xiàn)表格顏色交替變化,點(diǎn)擊選中行,鼠標(biāo)移過顏色變化效果圖如下:
源碼(Demo)打包下載 
html代碼如下:
復(fù)制代碼 代碼如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="table-row-1.0.js"></script>
<style type="text/css">
.table-tr-title{
height: 26px;
font-size: 12px;
text-align: center;
}
.table-tr-content{
height: 18px;
background: #FFFFFF;
text-align: center;
font-size: 12px;
}
.normalEvenTD{
background: #DFD8D8;
}
.normalOddTD{
background: #FFFFFF;
}
.hoverTD{
background-color: #eafcd5;
height: 18px;
text-align: center;
font-size: 12px;
}
.trSelected{
background-color: #51b2f6;
height: 18px;
text-align: center;
font-size: 12px;
}
</style>
</head>
<body>
<table width="99%" class="list" style="word-break: break-all" border="0"
align="center" cellpadding="0" cellspacing="1" bgcolor="#c0de98">
<tr class="table-tr-title">
<td width="5%">標(biāo)題</td>
<td width="5%">標(biāo)題</td>
<td width="5%">標(biāo)題</td>
<td width="5%">標(biāo)題</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
<tr class="table-tr-content">
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
<td width="5%">數(shù)據(jù)</td>
</tr>
</body>
</html>

table-row-1.0.js
復(fù)制代碼 代碼如下:

$(document).ready(function(){
///////datagrid選中行變色與鼠標(biāo)經(jīng)過行變色///////////////
var dtSelector = ".list";
var tbList = $(dtSelector);

tbList.each(function() {
var self = this;
$("tr:even:not(:first)", $(self)).addClass("normalEvenTD"); // 從標(biāo)頭行下一行開始的奇數(shù)行,行數(shù):(1,3,5...)
$("tr:odd", $(self)).addClass("normalOddTD"); // 從標(biāo)頭行下一行開始的偶數(shù)行,行數(shù):(2,4,6...)

// 鼠標(biāo)經(jīng)過的行變色
$("tr:not(:first)", $(self)).hover(
function () { $(this).addClass('hoverTD');$(this).removeClass('table-td-content'); },
function () { $(this).removeClass('hoverTD');$(this).addClass('table-td-content'); }
);

// 選擇行變色
$("tr", $(self)).click(function (){
var trThis = this;
$(self).find(".trSelected").removeClass('trSelected');
if ($(trThis).get(0) == $("tr:first", $(self)).get(0)){
return;
}
$(trThis).addClass('trSelected');
});
});
});

相關(guān)文章

最新評(píng)論