$(document).ready(function(){
$ ("p:odd").css("배경색", "#bbf")
$("p:even").css("배경색","#ffc")
$("p").click(function () {
$("p").each(function(){
if($(this).hasClass("highlight")){
$(this).removeClass("highlight");
}});
$(this).addClass("highlight")
});
源码参考gamil:test_jquery_table