jquery隔行換色效果實(shí)現(xiàn)方法

字號(hào):


    這篇文章主要介紹了jquery隔行換色效果實(shí)現(xiàn)方法,涉及even及odd選擇器的使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    本文實(shí)例講述了jquery隔行換色效果實(shí)現(xiàn)方法。分享給大家供大家參考。具體分析如下:
    使用 jquery 來(lái)實(shí)現(xiàn)隔行換行的效果,簡(jiǎn)單得就跟吃飯一樣。來(lái)吧,看看代碼到底有多么的簡(jiǎn)單
    代碼如下:
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <script type="text/javascript" src="jquery-1.8.2.min.js"></script>
    <script type="text/javascript">
    $(function(){
    $("#stu tr:even").addClass("bg");
    $("#stu tr:odd").addClass("bg1");
    });
    </script>
    <style type="text/css">
    #stu{width:300px;border:solid 1px green;border-spacing:0px;}
    #stu th{background:#ccc;}
    .bg{background:blue;}
    .bg1{background:yellow;}
    </style>
    </head>
    <body>
    <table id="stu">
    <tr><th>學(xué)號(hào)</th><th>姓名</th><th>專業(yè)</th></tr>
    <tr><td>0812124</td><td>羊羊羊</td><td>生物工程</td></tr>
    <tr><td>0812120</td><td>燕燕燕</td><td>軟件工程</td></tr>
    <tr><td>0812124</td><td>王美人</td><td>計(jì)算機(jī)</td></tr>
    <tr><td>0812124</td><td>海飛絲</td><td>商務(wù)英語(yǔ)</td></tr>
    <tr><td>0812124</td><td>宋夫人</td><td>藥物研究</td></tr>
    </table>
    </body>
    </html>
    希望本文所述對(duì)大家的jQuery程序設(shè)計(jì)有所幫助。