一、隔行换色 $("tr:odd").css("background-color","#eeeeee"); $("tr:even").css("background-color","#ffffff");或者一行搞定:$("table tr:nth-child(odd)").css("backgrou ...
分类:
Web程序 时间:
2020-05-07 22:36:06
阅读次数:
95
CSS代码:th{ height: 30px; line-height: 20px; background: #0093D9; color: #fff;} td{ padding: 6px 10px; border-bottom: 1px solid #95bce2; text-ali...
分类:
Web程序 时间:
2015-02-26 14:42:57
阅读次数:
153
如何实现鼠标经过时变色呢?如图:------------------------------------如何实现鼠标放在上面时表格的行变色呢?有如下两种方式:方式一:使用纯cssdiv.queryResultDivtable.productListtr:nth-child(n+2):hover
{
background-color:#B0D2FF;
}说明:n从零开始,所以hover从第二行才..
分类:
其他好文 时间:
2015-02-08 23:24:37
阅读次数:
260
jQuery实现table隔行换色和鼠标经过变色
一、隔行换色
$("tr:odd").css("background-color","#eeeeee");
$("tr:even").css("background-color","#ffffff");
或者一行搞定:
$("table tr:nth-child(odd)").css("background-color","#eeeeee");
二、鼠标经过变色
$("tr").live({
mouseover:function(){
$(this)....
分类:
Web程序 时间:
2014-06-15 10:15:32
阅读次数:
329