JS悬停改变颜色-有标题.frm
setTimeout(function() {
//鼠标经过时
$(".x-table.REPORT0table tr:gt(0) ").mousemove(function() {
//所在单元格字体颜色为红色
$(this).css("color", "red");
//所在单元格背景为蓝色
$(this).css("background-color", "blue");
//所在单元格字体加粗
// $(this).css("font-weight", "bold");
//所在单元格添加下划线
// $(this).css("text-decoration", "underline");
//所在行单元格字体:11px
// $(this).find("td").css("font-size", "11px");
});
}, 100);
setTimeout(function() {
//鼠标离开
$(".x-table.REPORT0table tr:gt(0)").mouseout(function() {
//所在行背景色:白色
$(this).css("background-color","white");
//所在行单元格字体:12px
// $(this).css("font-size","12px");
//所在单元格字体颜色为红色
$(this).css("color", "black");
});
}, 100);