1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 如何使用jQuery5分鐘快速搞定雙色表格

        時間:2024-09-11 13:59:11 jQuery 我要投稿
        • 相關推薦

        如何使用jQuery5分鐘快速搞定雙色表格

          先看看這個使用jQuery做的雙色表格的效果:

          這個雙色表格看上去應該覺得挺專業的,不過它用jQuery實現的確很簡單。

          第一步:寫好css。

          th { /*表頭樣式*/ background:#0066FF; color:#FFFFFF; line-height:20px; height:30px; } td { padding:6px 11px; border-bottom:1px solid #95bce2; vertical-align:top; text-align:center; } td * { padding:6px 11px; } tr.alt td { background:#ecf6fc; /*這行將給所有的tr加上背景色*/ } tr.over td { background:#bcd4ec; /*這個將是鼠標高亮行的背景色*/ }

          第二步:寫jQuery頁面加載事件:

          $(function(){//給class為stripe的表格的偶數行添加class值為alt $(".stripe tr:even").addClass("alt"); $(".stripe tr").mouseover(function(){//如果鼠標移到class為stripe的表格的tr上時,執行函數 $(this).addClass("over");}).mouseout(function(){//給這行添加class值為over,并且當鼠標一出該行時執行函數 $(this).removeClass("over"); })});

          上面的鼠標懸浮事件采用了jQuery的鏈式操作,本來是應該這么寫的:

          $(".stripe tr").mouseover(function(){ $(this).addClass("over");}) $(".stripe tr").mouseout(function(){ $(this).removeClass("over"); })

          但上面的的代碼卻寫成了這樣:

          $(".stripe tr").mouseover(function(){ $(this).addClass("over");}).mouseout(function(){ $(this).removeClass("over");})

          在jQuery中,執行完mouseover或mouseout等方法之后,它會返回當前的操作對象,所以可以采用jQuery的鏈式操作。

          下面把完整的jsp代碼貼出來MyJsp.jsp:

          <%@ page="" language="java" import="java.util.*" pageencoding="UTF-8"><%string path="request.getContextPath();String" basepath="request.getScheme()+">

          $(function(){//給class為stripe的表格的偶數行添加class值為alt $(".stripe tr:even").addClass("alt"); $(".stripe tr").mouseover(function(){//如果鼠標移到class為stripe的表格的tr上時,執行函數 $(this).addClass("over");}).mouseout(function(){//給這行添加class值為over,并且當鼠標一出該行時執行函數 $(this).removeClass("over"); })});

          th { background:#0066FF; color:#FFFFFF; line-height:20px; height:30px; } td { padding:6px 11px; border-bottom:1px solid #95bce2; vertical-align:top; text-align:center; } td * { padding:6px 11px; } tr.alt td { background:#ecf6fc; /*這行將給所有的tr加上背景色*/ } tr.over td { background:#bcd4ec; /*這個將是鼠標高亮行的背景色*/ }

        姓名年齡QQEmail
        李曉紅24859855***859855***@qq.com
        云天河18123456789123456789@qq.com
        柳夢璃18987654321987654321@qq.com
        韓菱紗18888888888888888888@qq.com
        玄霄58123456123456@qq.com
        土靈珠1000-10000-10000@qq.com

          怎么樣呢?jQuery就是這么給力。以上這篇使用jQuery5分鐘快速搞定雙色表格的簡單實例就是小編分享給大家的全部內容了,希望能給大家一個參考。

        【如何使用jQuery5分鐘快速搞定雙色表格】相關文章:

        如何用CAD快速畫表格10-04

        怎樣快速搞定上班妝08-23

        如何高效快速搞定雅思聽力?四遍法就可以07-29

        如何30分鐘內搞定托福寫作考試07-09

        如何搞定軟裝10-24

        Word表格快速處理的方法07-01

        枸杞雙色吐司的做法10-30

        如何把EXCEL表格轉成WORD表格02-19

        如何快速增肌06-10

        如何快速學習粵語08-10

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>