欧美精品亚洲精品日韩经典,午夜秒播,国产福利精品一区二区,亚洲国产成人精品久久,亚洲免费专区,国产精品国产三级国产a,日韩福利网站

龍巖易富通網(wǎng)絡(luò )科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷(xiāo)系統

Jquery實(shí)現對Table表格奇偶行設置顏色及移動(dòng)鼠標行變色

2016.07.27 | 1968閱讀 | 0條評論 | javascript

//頁(yè)面加載,調用js

$(document).ready(function () {

            pageLoad();   //頁(yè)面加載,隔行變色

        });

 

//頁(yè)面加載時(shí),對Table表格移動(dòng)鼠標行變色操作,通用方法

function pageLoad() {

 

    //table 中設置class屬性[class= msgtable]

    $("table[class=msgtable]").each(function () {

        var _this = $(this);

        //設置偶數行和奇數行顏色

        _this.find("tr:even").css("background-color", "#f8f8f8");

        _this.find("tr:odd").css("background-color", "#f0f0f0");

 

        //鼠標移動(dòng)隔行變色hover用法關(guān)鍵

        _this.find("tr:not(:first)").hover(function () {

            $(this).attr("bColor", $(this).css("background-color")).css("background-color", "#E0E0E0").css("cursor", "pointer");

        }, function () {

            $(this).css("background-color", $(this).attr("bColor"));

        });

 

    });

}


贊 (

發(fā)表評論