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
查看全文
相关阅读:
论文翻译:2003_Analysis of Two-Channel Generalized Sidelobe Canceller (GSC) With Post-Filtering
论文翻译:2019_Speech Bandwidth Extension With WaveNet
回声消除中的LMS和NLMS算法与MATLAB实现
电脑组装之硬件选择
回声消除应用平台
OpenCV图像处理以及人脸识别
回声消除中的自适应滤波算法综述
市场车载音响麦克风摆放以及降噪解决方案
车载环境下的噪声分析
NLTK自然语言处理库
原文地址:https://www.cnblogs.com/Dicky/p/176631.html
最新文章
TensorFlow实现时间序列预测
词向量表示:word2vec与词嵌入
Deep Dream模型与实现
基于深度学习的图像识别模型发展
Keras实现RNN模型
波束形成算法综述
机器学习——聚类算法
论文翻译:1994_An Algorithm To Reconstruct Wideband Speech From Narrowband Speech Based On Codebook Mapping
论文翻译:2000_wideband extension of telephone speech using a hidden Markov model
论文翻译:2000_narrowband to wideband conversion of speech using GMM based transformation
热门文章
论文翻译:2015_DNN-Based Speech Bandwidth Expansion and Adding High-Frequency Missing Features Narrowband Speech
论文翻译:Speech Enhancement Based on the General Transfer Function GSC and Postfiltering
论文翻译:2018_Artificial Bandwidth Extension with Memory Inclusion using Semi-supervised Stacked Auto-encoders
论文翻译:Generalized end-to-end loss for speaker verification
论文翻译:2018_Time-Frequency Networks For Audio Super-Resolution
前端——jQuery
论文翻译:Latent Representation Learning For Artificial Bandwidth Extension Using A Conditional Variational Auto-Encoder
论文翻译:2019_Speech Super Resolution Generative Adversarial Network
前端——CSS
L1和L2:损失函数和正则化
Copyright © 2011-2022 走看看