继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

javascript数组排序函数

千岁不倒翁
关注TA
已关注
手记 362
粉丝 60
获赞 386

  1. 代码:

    /*@desc:表格排序类@param data 待排序数组*/function tablesort(data){this.data = datathis.sortby = true/* @desc:主方法,排序 @param item 排序字段 @return ret 排序后的数据 */this.sort = function(item){    if(this.sortby){        var ret = this.data.sort(function(a,b){            return a[item]>b[item]        })    }else{        var ret = this.data.sort(function(a,b){            return a[item]<b[item]        })    }    this.sortby = !this.sortby    return ret}}
  2. 测试:

    var data = new Array( {     id:1,     title:'title1',     content:'content1' }, {     id:3,     title:'title2',     content:'content3' }, {     id:2,     title:'title3',     content:'content2' })var tablesort = new tablesort(data)var ret = tablesort.sort('id')console.log(ret)var ret = tablesort.sort('title')console.log(ret)var ret = tablesort.sort('id')console.log(ret)
  3. 输出:

    [ { id: 1, title: 'title1', content: 'content1' },{ id: 2, title: 'title3', content: 'content2' },{ id: 3, title: 'title2', content: 'content3' } ][ { id: 2, title: 'title3', content: 'content2' },{ id: 3, title: 'title2', content: 'content3' },{ id: 1, title: 'title1', content: 'content1' } ][ { id: 1, title: 'title1', content: 'content1' },{ id: 2, title: 'title3', content: 'content2' },{ id: 3, title: 'title2', content: 'content3' } ]

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP