1.我的页面有背景色,因此contentPane.makeHighlight('red'); 这种方法不可行
2.我希望实现的是 点击本行就这行就变色,然后离开后不恢复,直到我点击其他行时,其他行变色,原先的行恢复原来的背景色。
$(".x-table tr").mousemove(function() {
$(this).css("background-color","#eee");
$(this).find("td").css("background-color","#eee");
});
$(".x-table tr").mouseout(function() {
$(this).css("background-color","#fff");
$(this).find("td").css("background-color","#fff");
});
这种离开后就颜色变了