今天就跟大家聊聊有關(guān)使用JavaScript怎么對(duì)表格進(jìn)行排序,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
在馬山等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專(zhuān)注、極致的服務(wù)理念,為客戶(hù)提供網(wǎng)站制作、成都網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需開(kāi)發(fā),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),全網(wǎng)整合營(yíng)銷(xiāo)推廣,外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),馬山網(wǎng)站建設(shè)費(fèi)用合理。
具體如下:
<!DOCTYPE> <html> <head> <meta http-equiv="Content-type" content="text/html" charset="utf-8"> <title>sort table</title> <style> *{ margin:0px; padding:0px; } body{ background:#ccc; } table{ width:350px; margin:0 auto; background-color:#eee; } table th{ cursor:hand; padding:5px 0; background-color:#999; } table td{ background-color:#fff; font-size:16px; font-weight:normal; text-align:center; line-height:30px; } </style> <script language="javascript"> function sortCells(type){ var tbs=document.getElementsByTagName("table")[0]; var arr=[]; var arr2=[]; for(var i=1;i<tbs.rows.length;i++){ var text=tbs.rows[i].cells[type].innerText; arr.push(text); arr2[text]=i; } if(type==0){ arr.sort(function(a,b){return a-b}); }else{ arr.sort(); } var temp=""; for(var j=1;j<tbs.rows.length;j++){ temp=tbs.rows[j].cells[0].innerText; tbs.rows[j].cells[0].innerText=tbs.rows[arr2[arr[j-1]]].cells[0].innerText; tbs.rows[arr2[arr[j-1]]].cells[0].innerText=temp; temp=tbs.rows[j].cells[1].innerText; tbs.rows[j].cells[1].innerText=tbs.rows[arr2[arr[j-1]]].cells[1].innerText; tbs.rows[arr2[arr[j-1]]].cells[1].innerText=temp; temp=tbs.rows[j].cells[2].innerText; tbs.rows[j].cells[2].innerText=tbs.rows[arr2[arr[j-1]]].cells[2].innerText; tbs.rows[arr2[arr[j-1]]].cells[2].innerText=temp; // console.log(arr2); for(var i=1;i<tbs.rows.length;i++){ var text=tbs.rows[i].cells[type].innerText; arr2[text]=i; } } } </script> </head> <body> <center>sort table</center> <table border="0"> <tr> <th onclick="sortCells(0);">序號(hào)</th> <th onclick="sortCells(1);">姓名</th> <th onclick="sortCells(2);">日期</th> </tr> <tr> <td>2</td> <td>BB</td> <td>2015-09-12</td> </tr> <tr> <td>3</td> <td>CC</td> <td>2015-07-12</td> </tr> <tr> <td>1</td> <td>AA</td> <td>2015-09-11</td> </tr> <tr> <td>4</td> <td>DD</td> <td>2015-06-12</td> </tr> </table> </body> </html>
運(yùn)行效果:
看完上述內(nèi)容,你們對(duì)使用JavaScript怎么對(duì)表格進(jìn)行排序有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
網(wǎng)站題目:使用JavaScript怎么對(duì)表格進(jìn)行排序
網(wǎng)站地址:http://jinyejixie.com/article0/pshhio.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營(yíng)銷(xiāo)、網(wǎng)站改版、企業(yè)網(wǎng)站制作、網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)