jquery-动态样式表格
$(document).ready(function() {$("#dataTable tr:odd").addClass("bgred");$("#dataTable tr:even").addClass("bggreen");$("#dataTable tr").mouseover(function() {$(this).addClass("bgwhite");});$("#dataTable tr").mouseout(function() {$(this).removeClass("bgwhite");});});
?