欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jQuery實現表格顏色交替顯示的方法

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

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

復制代碼 代碼如下:
<!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實現表格顏色的交替顯示</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>網址</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>風格之舞</td>
      <td>火德</td>
      <td>隔行換色</td>
    </tr>
    <tr>
      <td>趙雷的博客</td>
      <td>趙雷</td>
      <td>新浪微博</td>
    </tr>
    <tr>
      <td>寂寞廣場</td>
      <td>魏春亮</td>
      <td>同學錄</td>
    </tr>
    <tr>
      <td>淘寶UED</td>
      <td>淘寶</td>
      <td>經常購物</td>
    </tr>
  </tbody>
</table>
</body>
</html>

希望本文所述對大家的jQuery程序設計有所幫助。

相關文章

最新評論