//頁面加載,調(diào)用js
$(document).ready(function () {
pageLoad(); //頁面加載,隔行變色
});
//頁面加載時,對Table表格移動鼠標(biāo)行變色操作,通用方法
function pageLoad() {
//table 中設(shè)置class屬性[class= msgtable]
$("table[class=msgtable]").each(function () {
var _this = $(this);
//設(shè)置偶數(shù)行和奇數(shù)行顏色
_this.find("tr:even").css("background-color", "#f8f8f8");
_this.find("tr:odd").css("background-color", "#f0f0f0");
//鼠標(biāo)移動隔行變色hover用法關(guān)鍵
_this.find("tr:not(:first)").hover(function () {
$(this).attr("bColor", $(this).css("background-color")).css("background-color", "#E0E0E0").css("cursor", "pointer");
}, function () {
$(this).css("background-color", $(this).attr("bColor"));
});
});
}
發(fā)表評論