jQuery.noConflict();
jQuery(document).ready( function() {jQuery("#userTable tr:odd").css("background-color", "#cccccc");
 
 jQuery("#userTable tr").hover( function() {
  jQuery(this).addClass("hover");
 }, function() {
  jQuery(this).removeClass("hover");
 });
 
 
 
});
加上jQuery("#userTable tr:odd").css("background-color", "#cccccc"); 
问题补充:奇数行在鼠标经过没有颜色了!!!!!!!!!!!!!!!!!!!!!!!!!!!!!