首页 相关文章 运用jquery实现table单双行不同显示并能单行选中

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

代码如下:
$(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[ 查看全文 ]

2016-02-19 标签:

运用jquery实现table单双行不同显示并能单行选中的相关文章

手机页面
收藏网站 回到头部