http://stackoverflow.com/questions/6269831/hover-effects-not-working-with-ie8
里指出,IE8下是可以使用 hover的,如果想用jquery来实现类似的功能,可以考虑:
$("#tabb tbody tr").hover(
function() {
$("this").children("td").css( { 'background-color': '#d0e4f2', 'color': '#006' } );
},
function() {
$("this").children("td").css( { ... } );
}
);