首页> 基础笔记 >JS/JQ基础学习 >Jquery Jquery
jQuery表格的应用
作者:小萝卜 2023-03-24 【 jquery 】 浏览 622
简介jQuery表格的应用
表格的应用:
奇偶行不同色:
$(this).find('tr:odd > td').css('backgroundColor', opts.oddColor);
$(this).find('tr:even > td').css('backgroundColor', opts.evenColor);
鼠标滑过变色:
$(this).mouseover(function(){
$(this).find('td').css('backgroundColor', opts.overColor);
});
$(this).mouseout(function(){
if (this.clicked) {
$(this).find('td').css('backgroundColor', opts.selColor);
} else {
$(this).find('td').css('backgroundColor', this.origColor);
}
});
很赞哦! (0)