zoukankan
html css js c++ java
JS 无刷新排序
代码如下:
<html> <head> <script> function order() { var it=event.srcElement; var table=it; var i,j,k; var t1,t2; if(it.tagName=="TH"){ i=it.cellIndex; it.title=it.title=="asc"?"desc":"asc"; while(table.tagName!="TABLE")table=table.parentElement; if(table.rows.length<3)return true; for(j=1;j<table.rows.length;j++){ for(k=j+1;k<table.rows.length;k++){ if(it.title=="asc"?parseFloat(table.rows[k].cells[i].innerText)<parseFloat(table.rows[j].cells[i].innerText):parseFloat(table.rows[k].cells[i].innerText)>parseFloat(table.rows[j].cells[i].innerText)) table.rows[j].swapNode(table.rows[k]); } } } } </script> </head> <body> <table border="1"> <thead onclick="order()" style="cursor:hand;"> <th>Item 1</th><th>Item 2</th><th>Item 3</th><th>Item 4</th> </thead> <tr><td>12.3</td><td>423</td><td>86.83</td><td>1.213</td></tr> <tr><td>2</td><td>434</td><td>5.334</td><td>.234</td></tr> <tr><td>33</td><td>43</td><td>5.223</td><td>8.73</td></tr> <tr><td>21.3</td><td>234</td><td>52.34</td><td>.666</td></tr> <tr><td>33.4</td><td>59</td><td>67.2</td><td>.426</td></tr> </table> </body> </html>
[Ctrl+A 全选 提示:你可先修改部分代码,再点运行代码]
青苹果Web应用商店
https://webapp.taobao.com/
PHP/ASP.NET/ASP/UCHOME/DISCUZ! X系列网站开发,详细需求联系
QQ:8511978
查看全文
相关阅读:
Start Developing iOS Apps (Swift) 开始开发iOS应用(Swift)
ansible copy file
多个sshkey 指定key来clone仓库
elastic search 日期为string类型导致视图无法展示时间的解决办法
ubuntu 安装php 报错解决
ruby hash 默认值的问题
11.Mysql 之MHA(高可用)
10. 主从复制-主从复制(基于GTID)--附加半同步复制
9 .mysql的备份与恢复
11.Mysql之回表、最左匹配、索引下推
原文地址:https://www.cnblogs.com/Dicky/p/176631.html
最新文章
pycharm vs vscode项目调试对比
centos 配置静态ip
centos7 安装python及换源
django文档总结之DRF、序列化(5)
django文档总结之后台管理、RESTFUL(4)
django文档总结之数据库操作-mysql(3)
TPO1-3Timberline Vegetation on Mountains
TPO3-1 Architecture
TPO1-3Timberline Vegetabtion on Mountain|have the advantage over
Keywords|Result|Final check
热门文章
DNA methylation|Transcription factors|PTM|Chromosome conformation|表观遗传学测序技术
广义线性模型|logistics|Odds ratio|最大似然函数|LR|AIC|
TPO5-3 The Cambrian Explosion
TPO5-2 The Origin of Pacific Island People
TPO5-1 Minerals and plants
TPO4-2 Cave Art in Europe
常用工具箱tools
mac 终端显示彩色
dockercompose up build fail (node no such file or directory packages.json )
dockercompose up build fail
Copyright © 2011-2022 走看看