亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

肇东市| 安远县| 宁南县| 台安县| 孙吴县| 松溪县| 正定县| 年辖:市辖区| 岳普湖县| 开远市| 平阳县| 宁强县| 建昌县| 遵义县| 历史| 宁河县| 太仆寺旗| 横峰县| 大足县| 卓资县| 德清县| 平和县| 新郑市| 河南省| 伊川县| 巴彦县| 景东| 黄龙县| 西林县| 固始县| 潢川县| 夏邑县| 枣强县| 三都| 郁南县| 萍乡市| 贵阳市| 肇州县| 永兴县| 栾城县| 蛟河市|