项目中常用的工具方法

const acmTools = {
  //页面滚动到顶部
  upTop: function() {
    $('body,html').animate({
      scrollTop: 0
    }, 50);
  },
  //判断一个对象是否为空;空对象返回ture
  isNullObj: function(obj) {
    return (Object.prototype.isPrototypeOf(obj) && Object.keys(obj).length === 0);
  },
  //获取当前时间戳
  now: function() {
    return new Date().getTime();
  },
  //节流函数
  throttle: function(fn, delay, atleast) {
    var timer = null;
    var previous = null;
    return function() {
      var now = +new Date();

      if (!previous) previous = now;
      if (atleast && now - previous > atleast) {
        fn();
        // 重置上一次开始时间为本次结束时间
        previous = now;
        clearTimeout(timer);
      } else {
        clearTimeout(timer);
        timer = setTimeout(function() {
          fn();
          previous = null;
        }, delay);
      }
    }
  },
  //去抖函数
  debounce: function(func, wait, immediate) {
    let timeout;
    let args;
    context;
    let timestamp;
    let result;
    let later = function() {
      let last = now() - timestamp;
      if (last < wait && last >= 0) {
        timeout = setTimeout(later, wait - last);
      } else {
        timeout = null;
        if (!immediate) {
          result = func.apply(context, args);
          if (!timeout) context = args = null;
        }
      }
    };
    return () => {
      context = this;
      args = arguments;
      timestamp = now();
      let callNow = immediate && !timeout;
      if (!timeout) timeout = setTimeout(later, wait);
      if (callNow) {
        result = func.apply(context, args);
        context = args = null;
      }
      return result;
    };
  },
  //倒计时60秒
  startCount: function(id) {
    var wait = 60;
    var component = document.getElementById(id);
    time(component);

    function time(o) {
      if (wait == 0) {
        o.removeAttribute("disabled");
        o.value = "获取验证码";
        wait = 60;
      } else {
        o.setAttribute("disabled", true);
        o.value = "重新发送(" + wait + ")";
        wait--;
        setTimeout(function() {
            time(o)
          },
          1000)
      }
    }
  },
  //手机号格式判断
  checkPhone: function(uerphone) {
    if (!(/^1\d{10}$/.test(uerphone))) {
      return false;
    } else {
      return true;
    }
  },
  //身份证号码验证
  checkIdentityCode: function(code) {
    var city = { 11: "北京", 12: "天津", 13: "河北", 14: "山西", 15: "内蒙古", 21: "辽宁", 22: "吉林", 23: "黑龙江 ", 31: "上海", 32: "江苏", 33: "浙江", 34: "安徽", 35: "福建", 36: "江西", 37: "山东", 41: "河南", 42: "湖北 ", 43: "湖南", 44: "广东", 45: "广西", 46: "海南", 50: "重庆", 51: "四川", 52: "贵州", 53: "云南", 54: "西藏 ", 61: "陕西", 62: "甘肃", 63: "青海", 64: "宁夏", 65: "新疆", 71: "台湾", 81: "香港", 82: "澳门", 91: "国外 " };
    var tip = "";
    var pass = true;

    if (!code || !/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[12])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/i.test(code)) {
      tip = "身份证号格式错误";
      pass = false;
    } else if (!city[code.substr(0, 2)]) {
      tip = "地址编码错误";
      pass = false;
    } else {
      //18位身份证需要验证最后一位校验位
      if (code.length == 18) {
        code = code.split('');
        //∑(ai×Wi)(mod 11)
        //加权因子
        var factor = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
        //校验位
        var parity = [1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2];
        var sum = 0;
        var ai = 0;
        var wi = 0;
        for (var i = 0; i < 17; i++) {
          ai = code[i];
          wi = factor[i];
          sum += ai * wi;
        }
        var last = parity[sum % 11];
        if (parity[sum % 11] != code[17]) {
          tip = "校验位错误";
          pass = false;
        }
      }
    }
    if (!pass) alert(tip);
    return pass;
  },
  //邮箱校验
  checkEmail: function(str) {
    if (!(/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/.test(str))) {
      return false;
    } else {
      return true;
    }
  },
  checkSpecial: function(str) {
    if ((/[(\!)(\^)(\*)(\()(\))(\+)(\=)(\[)(\])(\{)(\})(\|)(\\)(\;)(\:)(\')(\")(\,)(\/)(\<)(\>)(\?)(\)]+/.test(str))) {
      return false;
    } else {
      return true;
    }
  },
  //获取字符串长度
  getSlen: function(str) {
    if (str == null) return 0;
    if (typeof str != "string") {
      str += "";
    }
    return str.replace(/[^\x00-\xff]/g, "01").length;
  },
  //UE初始化
  getUUEditor: function(editor, editorId, config) {
    try {
      editor.setContent('');
    } catch (e) {
      UE.delEditor(editorId);
    }
    return UE.getEditor(editorId, config);
  },
  //数据类型判断
  type: function(obj) {
    var toString = Object.prototype.toString;
    var map = {
      '[object Boolean]': 'boolean',
      '[object Number]': 'number',
      '[object String]': 'string',
      '[object Function]': 'function',
      '[object Array]': 'array',
      '[object Date]': 'date',
      '[object RegExp]': 'regExp',
      '[object Undefined]': 'undefined',
      '[object Null]': 'null',
      '[object Object]': 'object'
    };
    if (obj instanceof Element) {
      return 'element';
    }
    return map[toString.call(obj)];
  },
  //对象深拷贝
  deepClone: function(data) {
    var t = this.type(data),
      o, i, ni;

    if (t === 'array') {
      o = [];
    } else if (t === 'object') {
      o = {};
    } else {
      return data;
    }

    if (t === 'array') {
      for (i = 0, ni = data.length; i < ni; i++) {
        o.push(this.deepClone(data[i]));
      }
      return o;
    } else if (t === 'object') {
      for (i in data) {
        o[i] = this.deepClone(data[i]);
      }
      return o;
    }
  },

  //utf-8编码
  encodeUtf8: function(text) {
    const code = encodeURIComponent(text);
    const bytes = [];
    for (var i = 0; i < code.length; i++) {
      const c = code.charAt(i);
      if (c === '%') {
        const hex = code.charAt(i + 1) + code.charAt(i + 2);
        const hexVal = parseInt(hex, 16);
        bytes.push(hexVal);
        i += 2;
      } else bytes.push(c.charCodeAt(0));
    }
    return bytes;
  },

  //utf-8解码
  decodeUtf8: function(bytes) {
    var encoded = "";
    for (var i = 0; i < bytes.length; i++) {
      encoded += '%' + bytes[i].toString(16);
    }
    return decodeURIComponent(encoded);
  }
}

window.acmTools = acmTools;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值