jquery交替变换颜色的三种方法 实例代码

2020-05-18 08:43:19易采站长站整理


<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>even and odd</title>


<script type=”text/javascript” src=”jquery-1.4.4.js”></script>
<script type=”text/javascript” language=”javascript”>
$(function(){
    alert(“第一种”);
    $(“tbody tr:even”).css(“background-color”, “red”);
    $(“tbody tr:odd”).css(“background-color”, “yellow”);
    alert(“第二种”);
    $(“tbody tr”).each(function (index){
                            alert(index);   
                            if(0 == index%2)
                            {
                                $(this).css(“background-color”, “blue”);  
                            }
                            if(1 == index%2)
                            {
                                $(this).css(“background-color”, “green”);  
                            }
                      });
    alert(“第三种”);
    rows = document.getElementsByTagName(“tr”);
    var length = rows.length;