Posted in Javascript onJuly 25, 2009
$(document).ready(function(){ $("p:odd").css("background-color", "#bbf"); $("p:even").css("background-color","#ffc"); $("p").click(function () { $("p").each(function(){ if($(this).hasClass("highlight")){ $(this).removeClass("highlight"); }}); $(this).addClass("highlight"); }); });
源码参考gamil:test_jquery_table
运用jquery实现table单双行不同显示并能单行选中
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@