亲宝软件园·资讯

展开

运用jquery实现table单双行不同显示并能单行选中

人气:4
复制代码 代码如下:

$(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

加载全部内容

相关教程
猜你喜欢
用户评论