表格(Table)隔行变色】的更多相关文章

在ASP.NET的Repeater控件,实现隔行变色,是极简单的事情.因为它有ListItemType.Item和ListItemType.AlternatingItem模版.如果在普通的表格(Table)来实现隔行变色,就得使用css样式与jQuery来解决. 先来看看原始的表格样式: 打开视图: 在视图中,添加样式: 由于此视图是使用.getJSON()异步加载数据,因此得在加载完成之后,得马上给这个动态的表格添加上面的样式: 网页运行后的效果:…
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({'ba…
(1)用expression 鼠标滑过变色: <style type="text/css"><!-- table { background-color:#000000; cursor:hand; width:100%; }td { onmouseover: expression(onmouseover=function (){this.style.borderColor ='blue';this.style.color='red';this.style.backgro…
<html> <head> <title>Member List</title> <style> <!-- .datalist{ border:1px solid #0058a3; /* 表格边框 */ font-family:Arial; border-collapse:collapse; /* 边框重叠 */ background-color:#eaf5ff; /* 表格背景色 */ font-size:14px; } .datalis…
(1)用expression 鼠标滑过变色: <style type="text/css"><!-- table { background-color:#000000; cursor:hand; width:100%; }td { onmouseover: expression(onmouseover=function (){this.style.borderColor ='blue';this.style.color='red';this.style.backgro…
原文地址 table.wxml <view class="table"> <view class="tr bg-w"> <view class="th">head1</view> <view class="th">head2</view> <view class="th ">head3</view> </v…
table tr:nth-child(2n) {         background: #EEF8F0;     }     table tr:nth-child(2n+1) {         background: #C3FFC8;     …
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> table { width: 300px; } table, th, tr, td { border: 1px solid black; border-collapse: col…
table tr:nth-child(odd){background:#F4F4F4;} table td:nth-child(even){color:#C00;}…
<table id="datatable"> <tr> <td>脚本之家</td> </tr> <tr> <td>www.jb51.net</td> </tr> <tr> <td>脚本之家</td> </tr> <tr> <td>www.jb51.net</td> </tr> <…