JavaScript 做了个实验的,学习sort 函数,有错,我也不会改,求改!

WBOY
发布: 2016-06-06 20:12:54
原创
966 人浏览过

JavaScript 做了个实验的,学习sort 函数,有错,我也不会改,求改!

<code>var arr3 =new Array("xxxx510","xxxx12","xxxx16","xxxx18","xxxx13","xxxx14","xxxx15","xxxx8","xxxx7","xxxx6","xxxx1","xxxx5",2 );



arr3.sort(Nat123);
console.log(arr3.toString());


function Nat123(a,b)   //自然数升序
{
    var aa=a.replace( "xxxx" , "" );
    var bb=b.replace( "xxxx" , "" );

    if(aa==bb)
    {
        return 0;
    }
    else if(aa>bb)
    {
        return 1;    //1 就是第2个在前;
    }
    else
    {
        return -1;    //-1 就是第1个在前;     
    }
}
</code>
登录后复制
登录后复制

回复内容:

JavaScript 做了个实验的,学习sort 函数,有错,我也不会改,求改!

<code>var arr3 =new Array("xxxx510","xxxx12","xxxx16","xxxx18","xxxx13","xxxx14","xxxx15","xxxx8","xxxx7","xxxx6","xxxx1","xxxx5",2 );



arr3.sort(Nat123);
console.log(arr3.toString());


function Nat123(a,b)   //自然数升序
{
    var aa=a.replace( "xxxx" , "" );
    var bb=b.replace( "xxxx" , "" );

    if(aa==bb)
    {
        return 0;
    }
    else if(aa>bb)
    {
        return 1;    //1 就是第2个在前;
    }
    else
    {
        return -1;    //-1 就是第1个在前;     
    }
}
</code>
登录后复制
登录后复制

<code>function Nat123(a,b)   //自然数升序
{
    var aa = (typeof a === 'string') ? a.replace( "xxxx" , "" ) : a;
    var bb = (typeof b === 'string') ? b.replace( "xxxx" , "" ) : b;

    if(aa==bb)
    {
        return 0;
    }
    else if(aa>bb)
    {
        return 1;    //1 就是第2个在前;
    }
    else
    {
        return -1;    //-1 就是第1个在前;
    }
}
var arr3 =new Array("xxxx510","xxxx12","xxxx16","xxxx18","xxxx13","xxxx14","xxxx15","xxxx8","xxxx7","xxxx6","xxxx1","xxxx5",2 );
arr3.sort(Nat123);
console.log(arr3.toString());</code>
登录后复制

<code>var aa=parseInt(a.replace( "xxxx" , "" ));
var bb=parseInt(b.replace( "xxxx" , "" ));</code>
登录后复制
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!