久成视频在线观看免费-先锋影音资源影音中在线不卡-久久精品—区二区三区美女-久久国产免费一区二区三区

<track id="icesm"></track>

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

      龍巖小程序開發(fā),龍巖分銷系統(tǒng)

      Jquery實現(xiàn)對Table表格奇偶行設(shè)置顏色及移動鼠標(biāo)行變色

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

      //頁面加載,調(diào)用js

      $(document).ready(function () {

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

              });

       

      //頁面加載時,對Table表格移動鼠標(biāo)行變色操作,通用方法

      function pageLoad() {

       

          //table 中設(shè)置class屬性[class= msgtable]

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

              var _this = $(this);

              //設(shè)置偶數(shù)行和奇數(shù)行顏色

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

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

       

              //鼠標(biāo)移動隔行變色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ā)表評論