本文實例講述了jQuery+CSS實現(xiàn)的table表格行列轉(zhuǎn)置功能。分享給大家供大家參考,具體如下:
先來看看運(yùn)行效果:

具體代碼如下:
<!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>m.survivalescaperooms.com jQuery行列轉(zhuǎn)置</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; //注:多次點擊后,內(nèi)面文字會包裹多層div,尚無好的解決方法 function test(){ if(!flag){ $('table').addClass('vertical').find('th, td').wrapInner('<div>'); //$('table').addClass('vertical');//數(shù)字會變垂直,不能用 }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>數(shù)據(jù)1-1</td> <td>數(shù)據(jù)1-2</td> <td>數(shù)據(jù)1-3</td> <td>數(shù)據(jù)1-4</td> </tr> <tr> <td>數(shù)據(jù)2-1</td> <td>數(shù)據(jù)2-2</td> <td>數(shù)據(jù)2-3</td> <td>數(shù)據(jù)2-4</td> </tr> <tr> <td>數(shù)據(jù)3-1</td> <td>數(shù)據(jù)3-2</td> <td>數(shù)據(jù)3-3</td> <td>數(shù)據(jù)3-4</td> </tr> </table> <input type="button" onclick="test()" value="行列轉(zhuǎn)置" /></body></html>更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery表格(table)操作技巧匯總》、《jQuery操作json數(shù)據(jù)技巧匯總》、《jQuery form操作技巧匯總》、《jQuery常用插件及用法總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》及《jquery選擇器用法總結(jié)》
希望本文所述對大家jQuery程序設(shè)計有所幫助。
新聞熱點
疑難解答