setTimeout(function() {
$(".x-table tr").mousemove(function() {
$(this).css("background-color","yellow");
});
$(".x-table tr").mousedown(function() {
$(this).css("background-color","red");
});
$(".x-table tr").mouseout(function() {
$(this).css("background-color","white");
})
},1000);怎么可以设置鼠标在第一行当地九行的时候不变色,从第10行开始再变色。