Home  >  Article  >  Web Front-end  >  Use jquery to realize different display of single and double rows in table and enable single row selection_jquery

Use jquery to realize different display of single and double rows in table and enable single row selection_jquery

WBOY
WBOYOriginal
2016-05-16 18:49:271115browse
复制代码 代码如下:

$(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
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn