亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jquery css 設(shè)置table的奇偶行背景色示例

 更新時(shí)間:2014年06月03日 11:22:51   作者:  
jquery css 設(shè)置table的奇偶行背景色
復(fù)制代碼 代碼如下:

<style>
.even{background:#FFF38F;}
.odd{background:#FFFFEE;}
.selected{background:#FF9900;}
</style>

復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(function(){
$("tr:odd").addClass("odd");
$("tr:even").addClass("even");
});
</script>

相關(guān)文章

最新評(píng)論