<ul>
<li>第1行</li>
<li>第2行</li>
<li>第3行</li>
<li>第4行</li>
</ul>
<script>
$(function(){
$("ul li:nth-child(odd)").css("background-color","blue"); //单数行背景色
$("ul li:nth-child(even)").css("background-color","red"); //双数行背景色
});
</script>
温馨提示:答案为网友推荐,仅供参考