jquery自带的排序方法(js也是)
jquery.sort()
js.sort()
<!DOCTYPE html>
<html>
<head>
<meta charset=
"UTF-8"
>
<title></title>
</head>
<body>
<script type=
"text/javascript"
>
//利用jquery中的get方法获取json数据
$.get(
"exp.json"
,
""
,
function
(data){
var
newdata=data.result
//根据价格(price)排序
function
sortprice(a,b){
return
a.price-b.price
}
//利用js中的sort方法
newdata.sort(sortprice);
//打印排序后的数据到控制台
console.log(newdata);
})
</script>
</body>
</html>
此博客只是为了记忆相关知识点,大部分为网络上的文章,在此向各个文章的作者表示感谢!