91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript數組排序函數

發布時間:2020-07-17 13:50:02 來源:網絡 閱讀:673 作者:Lee_吉 欄目:web開發
  1. 代碼:
    /*
    @desc:表格排序類
    @param data 待排序數組
    */
    function tablesort(data){
    this.data = data
    this.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' } ]
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宾阳县| 兰西县| 云阳县| 开江县| 马关县| 象山县| 武穴市| 易门县| 桐城市| 延安市| 余干县| 若羌县| 克什克腾旗| 井研县| 威远县| 怀集县| 如皋市| 赞皇县| 松桃| 循化| 高阳县| 琼中| 聂拉木县| 涿州市| 西和县| 黄石市| 昌黎县| 成都市| 涞水县| 盘山县| 禄劝| 北碚区| 冀州市| 金堂县| 山东省| 区。| 盘锦市| 赤壁市| 色达县| 轮台县| 民丰县|