<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>New Web Project</title> <script> window.onload=function(){ var oU1=document.getElementById('uAge1'); var oU2=document.getElementById('uAge2'); var oBtn=document.getElementById('btn'); function sortNumber(l1,l2){ var n1=parseInt(l1.innerHTML); var n2=parseInt(l2.innerHTML); return n1-n2; } oBtn.onclick=function(){ var oLis=oU1.children; var oAry=[]; for(var j=0;j<oLis.length;j++) { oAry[j]=oLis[j]; } oAry.sort(sortNumber); for(var i=0;i<oLis.length;i++) { oU1.appendChild(oAry[i]); } }; }; </script> </head> <body> <ul id="uAge1"> <li>15</li> <li>66</li> <li>9</li> <li>10</li> <li>30</li> </ul> <input id="btn" type="button" value="排序" /> </body> </html>
注意事项:
1.appendChild()调用时,会有两步操作
- 首先从父级的元素中中删除本元素
- 将此元素加入到调用这个函数的父级
依据这两点。我们能够对元素集进行排序操作。
2.oU1.children获得元素集合跟 oU1.getElementsByTagName()获得的集合是等价的
3. sort()排序操作,是Array类型的数组独有的操作函数,集合不能使用,所以须要将获得的集合转换成数组才干够调用这个函数
执行结果例如以下图:
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMjE5MzMzMA==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" >
版权声明:本文博主原创文章。博客,未经同意不得转载。
时间: 2024-11-01 13:29:26