在jquery中对集合进行排序的方法:1.新建html项目,引入jquery;2.创建集合,并赋值;3.使用sort()函数对集合排序;
具体步骤如下:
1.首先,在新建一个html项目,在项目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在项目中创建一个集合,并赋值;
var list = [
{age:12},
{age:5},
{age:2}
];
3.集合创建好后,使用sort()函数即可对集合进行排序;
list.sort(function(a,b){
return a.age-b.age;
});
console.log(arr)