首页 > 编程语言 > 详细

sort排序

时间:2015-12-02 22:45:13      阅读:279      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>sort排序</title>
</head>
<body>
<script type="text/javascript">
var arr = [3,1,0,7,6,5,4,9];
document.write("原数组:"+arr+"<br />");
//升序参数
function ascArr(x,y){
if(x>y){
return 1;
}else{
return -1;
}
}

//降序参数
function descArr(x,y){
if(x>y){
return -1;
}else{
return 1;
}
}
document.write("升序后的数组:"+arr.sort(ascArr)+"<br />");
document.write("降序后的数组:"+arr.sort(descArr));
</script>
</body>
</html>

sort排序

原文:http://www.cnblogs.com/yifeizeng168/p/5014256.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!