您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
今天就跟大家聊聊有关使用JavaScript怎么对表格进行排序,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
具体如下:
<!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);">序号</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>
运行效果:
看完上述内容,你们对使用JavaScript怎么对表格进行排序有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。