选择器tr获取奇数偶数行

Posted 花伤情犹在

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择器tr获取奇数偶数行相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

jQuery:

<script type="text/javascript">
$("table tr:even").css("background-color","green");
$("table tr:odd").css("background-color","red");
</script>

JavaScript:

<script type="text/javascript">
window.onload=function(){
  var oLis=document.getElementsByTagName("li");
  for(var index=0;index<oLis.length;index++){
    if(index%2==0){
          oLis[index].style.backgroundColor="green";
    }
  }
}
</script>

JSTL:

<c:forEach items="${pageScope.petBeanList}" var="pet" varStatus="status">
            <%--判断行号-(偶数行)--%>
            <c:if test="${status.count %2 == 0}" var="even">
                <tr style="background-color: aqua">
            </c:if>
            <%--判断行号-(奇数行)--%>
            <c:if test="${!even}" var="odd">
                <tr>
            </c:if>
            <td></td>
           </tr>
</c:forEach>

以上是关于选择器tr获取奇数偶数行的主要内容,如果未能解决你的问题,请参考以下文章

js 如何设置奇数行和偶数行的背景颜色?

匹配所有索引值为偶数/奇数的元素,从 0 开始计数

jquery奇数偶数选择器

jquery奇数偶数选择器

悬停effects others in table

在MySQL中仅选择偶数/奇数行[重复]