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

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)站制作
大同市| 陵川县| 临泽县| 古交市| 惠水县| 永州市| 高平市| 眉山市| 福州市| 安康市| 分宜县| 西乌| 合江县| 五河县| 富宁县| 德化县| 德格县| 临漳县| 永兴县| 玉林市| 庆阳市| 灵石县| 盐城市| 丽水市| 许昌市| 鹤峰县| 罗源县| 鄂伦春自治旗| 乐清市| 比如县| 独山县| 兴国县| 余干县| 凉城县| 尉犁县| 比如县| 梓潼县| 宝清县| 巨鹿县| 定结县| 土默特右旗|