$(".data_tb tr").mouseover(function(){ //鼠标移动的高亮显示
$(this).css("background", "#BEE5F9");
}).mouseout(function(){
$(this).css("background", "#FFFFFF");
});
1
-
$(".data_tb tr").mouseover(function(){ //鼠标移动的高亮显示
$(this).css("background", "#BEE5F9");
}).mouseout(function(){
$(this).css("background", "#FFFFFF");
});
1
-