JQuery+CSS实现隔行变色以及高亮

table tbody tr.even td{
	background:#ADD8E6;
}
table tbody tr.odd td{
	background:#EEF5FB;
}

table tbody tr.msov td{
	background:#FFFF99;
}


$(document).ready(function () {
	$("table tbody tr:even").addClass("even");
	$("table tbody tr:odd").addClass("odd");
	
	$("table tbody tr").mouseover(function () {
		$(this).addClass("msov").mouseout(function () {
			$(this).removeClass("msov");
		});
	});
});

你可能感兴趣的:(jquery,css)