国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

jquery交替變換顏色的三種方法 實例代碼

2024-05-06 15:55:27
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了jquery交替變換顏色的三種方法,有需要的朋友可以參考一下

復制代碼 代碼如下:


<!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;
    for(var i=0; i< length;i++){
       alert(i);
       if(0==i%2){
           rows[i].style.backgroundColor="#ffff00";
       }else
       {
           rows[i].style.backgroundColor="#0000FF";
       }      
   }
});
</script>

</head>

<body>
<table>
<tbody >
    <tr> <td>aaa</td> <td>aaa</td> <td>aaa</td></tr>
    <tr> <td>bbb</td> <td>bbb</td> <td>bbb</td></tr>
    <tr> <td>aaa</td> <td>aaa</td> <td>aaa</td></tr>
    <tr> <td>bbb</td> <td>bbb</td> <td>bbb</td></tr>
    <tr> <td>aaa</td> <td>aaa</td> <td>aaa</td></tr>
    <tr> <td>bbb</td> <td>bbb</td> <td>bbb</td></tr>
</tbody>
</table>
</body>
</html>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 石阡县| 永泰县| 涪陵区| 阜城县| 保靖县| 南皮县| 新安县| 永顺县| 永川市| 高阳县| 邵阳县| 聂拉木县| 聊城市| 宣恩县| 邵阳市| 山东| 新巴尔虎左旗| 盐城市| 清新县| 新宁县| 西丰县| 凤翔县| 昂仁县| 肃宁县| 前郭尔| 彝良县| 唐海县| 石首市| 漯河市| 白城市| 喀喇| 营口市| 鄂温| 上饶县| 云和县| 迭部县| 南昌县| 临桂县| 昆明市| 塔河县| 资兴市|