表格隔行换色
<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...)