亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jQuery實(shí)現(xiàn)表格顏色交替顯示的方法

 更新時(shí)間:2015年03月09日 16:09:38   作者:hcqenjoy  
這篇文章主要介紹了jQuery實(shí)現(xiàn)表格顏色交替顯示的方法,涉及jQuery操作表格樣式的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了jQuery實(shí)現(xiàn)表格顏色交替顯示的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

復(fù)制代碼 代碼如下:
<!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>
<title>jQuery實(shí)現(xiàn)表格顏色的交替顯示</title>
<script type="text/javascript" src="js/jquery1.3.2.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
  jQuery(".truecolor tr:odd").addClass("color1");
  jQuery(".truecolor tr:even").addClass("color2");
  jQuery(".truecolor tr").hover(function(){
    jQuery(this).addClass("color3")
  },function(){
    jQuery(this).removeClass("color3")
  });
});
</script>
<style type="text/css">
.truecolor {border:1px solid #333;text-align:center;}
.truecolor th {background-color:#333; color:#FFF;}
.color1 {background-color:#DDD; color:#333;}
.color2 {background-color:#EEE; color:#333;}
.color3 {background-color:#666; color:#FFF;}
</style>
</head>
<body>
<table width="450" class="truecolor">
  <thead>
    <tr>
      <th>博客</th>
      <th>作者</th>
      <th>網(wǎng)址</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>風(fēng)格之舞</td>
      <td>火德</td>
      <td>隔行換色</td>
    </tr>
    <tr>
      <td>趙雷的博客</td>
      <td>趙雷</td>
      <td>新浪微博</td>
    </tr>
    <tr>
      <td>寂寞廣場(chǎng)</td>
      <td>魏春亮</td>
      <td>同學(xué)錄</td>
    </tr>
    <tr>
      <td>淘寶UED</td>
      <td>淘寶</td>
      <td>經(jīng)常購(gòu)物</td>
    </tr>
  </tbody>
</table>
</body>
</html>

希望本文所述對(duì)大家的jQuery程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論