https://help.fanruan.com/finereport/doc-view-1625.html
2.6
---
看不懂啥玩意。。自己写一个。
/*新的背景颜色*/
var background_color = "rgb(255,0,0)";
/*遍历计数器*/
var i = 0;
/* 首行除外,tr:gt(0)定位首行,索引从0开始,标题行为多行时注意此位置代码要做相应修改*/
$('.x-table tr:gt(1)') .bind("mouseenter", function () {
$(this).children("td").each(function () {
/*是否已变色*/
if($(this).attr('old-bgcolor')){
}
else{
/*单元格记录原始色*/
$(this).attr('old-bgcolor', $(this).css('background-color'));
$(this).css('background-color', background_color);
}
});
});
$('.x-table tr:gt(1)') .bind("mouseleave", function () {
$(this).children("td").each(function () {
/*是否已变色*/
if($(this).attr('old-bgcolor')){
$(this).css('background-color', $(this).attr('old-bgcolor'));
/*单元格去除原始色*/
$(this).attr('old-bgcolor','');
}
else{
}
});
});