1.jQuery进度条插件
http://www.jq22.com/jquery-info295

2.FormData用法详解
https://blog.csdn.net/zqian1994/article/details/79635413

3.datatables api 使用详解
https://www.cnblogs.com/amoniyibeizi/p/4548111.html

4.数组操作
https://blog.csdn.net/x2145637/article/details/51487855

5.jQuery DataTables的serverSide选项
https://blog.csdn.net/andy_zhang2007/article/details/78678120
http://www.datatables.club/manual/server-side.html

datables 的ajax: http://www.datatables.club/reference/option/ajax.html

6.JS浮点计算问题
https://www.cnblogs.com/Stephenchao/p/5743805.html

7.vue.js 基础
https://www.cnblogs.com/zhengjialux/p/5871980.html

8.数组改变结构:

var aa =[{
a: 1,
b: 2,
c: 1.1,
d: 2.1,
},{
a: 3,
b: 4,
c: 3.1,
e: 666,

    },{
        a: 5,
        b: 6,
        c: 5.1,

    },{
        a: 7,
        b: 8,
        c: 7.1,
        d: 8.1,
    }] ;
    var arr = $.map(aa,function(item,index){
        var resultArr;
        resultArr = {
            a:item.a,
            c:item.c,
        };
        item.d ? resultArr.d = item.d : "";
        item.e ? resultArr.e = item.e : "";
        return resultArr;
    });
    console.log(arr);
  1. OAuth的三种认证方式
    https://blog.csdn.net/poison_biti/article/details/76427649
    https://www.cnblogs.com/flashsun/p/7424071.html

10.html5shiv.js和respond.min.js
https://www.cnblogs.com/yangjie-space/p/4816279.html

11.Bootstrap Table
https://www.cnblogs.com/landeanfen/p/4976838.html

  1. 免费API接口
    https://www.sojson.com/api/weather.html
    https://blog.csdn.net/S_clifftop/article/details/77937356?locationNum=3&fps=1

13.css3新单位vw、vh、vmin、vmax的使用详解
https://blog.csdn.net/ZNYSYS520/article/details/76053961