function changeOver(id){
var sheet =document.styleSheets[0];
var rules = sheet.cssRules || sheet.rules;
var cssText = "";
for(var i in rules){
if(rules[i].selectorText==="#"+id+":hover"){
// 先取对应id的css样式
cssText = rules[i].style.cssText;
// 然后再设置上去
$("#"+id).attr("style",cssText);
break;
}
}
$("#id").hover(function(){
$(this).css({});
);
tr:hover th div{background-position:-0px -230px;}
添加这个样式即可