表格隔行换色

<script src="jquery-1.8.3.min.js"></script>
<script>
    $('#tb tr:even').css({ color: "#333", background: "#999" });//
    $('#tb tr:odd').css({ color: "#333", background: "#ccc" });
</script>

 

:even  查找表格的1、3、5...行(即索引值0、2、4...)

:odd   查找表格的2、4、6行(即索引值1、3、5...)

posted on 2014-02-27 16:53  N&#179;  阅读(104)  评论(0编辑  收藏  举报