jQuery+CSS實現的table表格行列轉置功能樣本,jquerytable

來源:互聯網
上載者:User

jQuery+CSS實現的table表格行列轉置功能樣本,jquerytable

本文執行個體講述了jQuery+CSS實現的table表格行列轉置功能。分享給大家供大家參考,具體如下:

先來看看運行效果:

具體代碼如下:

<!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>www.jb51.net jQuery行列轉置</title>  <script type="text/javascript" src="jquery-1.7.2.min.js"></script>  <style type="text/css">    table    {      border: 1px solid #ccc;      font-size: 14px;    }    table th    {      background: orange;      color: #fff;      padding: 10px;    }    table td    {      padding: 10px;    }    table.vertical    {      -webkit-writing-mode: vertical-lr;      -moz-writing-mode: vertical-lr;      -ms-writing-mode: tb-lr;      writing-mode: vertical-lr;    }    table.vertical th, table.vertical td    {      width: 100px;      height: 14px;    }    table.vertical div    {      width: 100px;      -webkit-writing-mode: horizontal-tb;      -moz-writing-mode: horizontal-tb;      -ms-writing-mode: lr-tb;      writing-mode: horizontal-tb;    }  </style>  <script type="text/javascript">    var flag = false;    //註:多次點擊後,內面文字會包裹多層div,尚無好的解決方案    function test(){      if(!flag){        $('table').addClass('vertical').find('th, td').wrapInner('<div>');        //$('table').addClass('vertical');//數字會變垂直,不能用      }else{        $('table').removeClass('vertical');      }      flag=!flag;    }  </script></head><body>  <table>   <tr>   <th>列1</th>   <th>列2</th>   <th>列3</th>   <th>列4</th>   </tr>   <tr>   <td>資料1-1</td>   <td>資料1-2</td>   <td>資料1-3</td>   <td>資料1-4</td>   </tr>   <tr>   <td>資料2-1</td>   <td>資料2-2</td>   <td>資料2-3</td>   <td>資料2-4</td>   </tr>   <tr>   <td>資料3-1</td>   <td>資料3-2</td>   <td>資料3-3</td>   <td>資料3-4</td>   </tr>  </table>  <input type="button" onclick="test()" value="行列轉置" /></body></html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.