成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

javascript數(shù)組排序函數(shù)

  1. 代碼:
    /*
    @desc:表格排序類
    @param data 待排序數(shù)組
    */
    function tablesort(data){
    this.data = data
    this.sortby = true
    /*
     @desc:主方法,排序
     @param item 排序字段
     @return ret 排序后的數(shù)據(jù)
     */
    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' } ]

網(wǎng)站欄目:javascript數(shù)組排序函數(shù)
網(wǎng)頁URL:http://jinyejixie.com/article20/ghheco.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作微信公眾號、網(wǎng)站設(shè)計(jì)品牌網(wǎng)站建設(shè)、網(wǎng)站營銷搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
雅安市| 拜城县| 油尖旺区| 武穴市| 句容市| 宁津县| 贵港市| 东城区| 深水埗区| 岳普湖县| 财经| 静宁县| 临安市| 永昌县| 六盘水市| 鹿邑县| 故城县| 小金县| 耒阳市| 珠海市| 缙云县| 凤凰县| 宁海县| 稻城县| 定结县| 余姚市| 阜宁县| 正阳县| 玉溪市| 永寿县| 伊宁县| 乐都县| 蓝田县| 高雄市| 宜兰市| 丁青县| 临武县| 柳河县| 长治县| 天水市| 大姚县|