码迷,mamicode.com
首页 > 其他好文 > 详细

表格table隔行变色

时间:2019-10-15 18:59:49      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:border   css   color   表格   else   top   last   rto   ast   

if($(‘.p03-s2‘).find(‘table‘).length >= 2) {
$(‘table:last-child‘).css({
‘borderTop‘: ‘none‘
});
}
if($(‘.p03-s2‘).find(‘th‘).length) {
$(‘thead‘).css({
‘backgroundColor‘ : ‘#edf0f2‘
});
$(‘tbody‘).css({
‘backgroundColor‘ : ‘#fff‘
});
} else {
$(‘tbody‘).css({
‘backgroundColor‘ : ‘none‘
});
$(‘tr:even td‘).css({
‘backgroundColor‘ : ‘#edf0f2‘,
‘color‘: ‘#808080‘
});
$(‘tr:odd‘).css({
‘backgroundColor‘ : ‘#fff‘,
‘color‘: ‘#333‘
});
}

表格table隔行变色

标签:border   css   color   表格   else   top   last   rto   ast   

原文地址:https://www.cnblogs.com/gduf/p/11679343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!