;(function(win, doc, undefined) {
/**
* 公用js使用说明
* 将js以静态文件或cdn方式引入到项目中
* 项目中使用指定方法调用直接ULE.functionName()的方式调用
* eg:ULE.getAppVersion()
*/
var common = {
/**
* 获取app版本,此方法适用于特定的app
* Author: gaoailing
* Date: 2020.7/16
*/
getAppVersion: function() {
var browser = {};
var ma = navigator.userAgent.match(/(ios|android)_(ule|ylxd|ylxdsq|yzgxd|yzg|yzs|ylsj|hrysh)_(.[^_]*)_(.[^_|\s]*)/);
if (ma) {
browser[ma[1]] = true;
browser[ma[2]] = ma[4] || '100';
}
return browser;
},
/**
* 获取cookie
* name:需要获取的cookie的key
* Author: gaoailing
* Date: 2020.7/16
*/
getCookie: function(name) {
var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
if (arr = document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
},
/**
* Description: PC/移动端 设备判断
* Author: gaoailing
* Date: 2020.7/16
*/
deviceType: function() {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
return 'mobile'
} else {
return 'pc'
}
},
/**
* Description: 获取app环境
* Author: gaoailing
* Date: 2020.7.16
*/
getApp: function() {
var ma = navigator.userAgent.match(/(ios|android)_(ule|ylxd|ylxdsq|yzgxd|yzg|yzs|ylsj|hrysh|chinapostHuiNong)_(.[^_]*)_(.[^_|\s]*)/);
if (ma) {
return ma[2]
} else {
return null
}
},
/**
* Description: 验证手机号码
* Author: gaoailing
* Date: 2020.7.16
*/
isMobile: function(s) {
return /^1[0-9]{10}$/.test(s)
},
/**
* Description: 验证邮箱
* Author: gaoailing
* Date: 2020.7.16
*/
isEmail: function(s) {
return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s);
},
/**
* Description: 获取地址栏参数,name:参数名称
* Author: gaoailing
* Date: 2020.7.16
*/
getUrlParms: function(name) {
const reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
const search = window.location.search.split('?')[1] || '';
const r = search.match(reg) || [];
return r[2];
},
/**
* Description: 是否字符串
* Author: gaoailing
* Date: 2020.7.16
*/
isString: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'String';
},
/**
* Description: 是否数字
* Author: gaoailing
* Date: 2020.7.16
*/
isNumber: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Number';
},
/**
* Description: 是否boolean
* Author: gaoailing
* Date: 2020.7.16
*/
isBoolean: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Boolean'
},
/**
* Description: 是否函数
* Author: gaoailing
* Date: 2020.7.16
*/
isFunction: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Function'
},
/**
* Description: 是否为null
* Author: gaoailing
* Date: 2020.7.16
*/
isNull: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Null'
},
/**
* Description: 是否undefined
* Author: gaoailing
* Date: 2020.7.16
*/
isUndefined: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Undefined'
},
/**
* Description: 是否对象
* Author: gaoailing
* Date: 2020.7.16
*/
isObj: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Object'
},
/**
* Description: 是否数组
* Author: gaoailing
* Date: 2020.7.16
*/
isArray: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Array'
},
/**
* Description: 是否时间
* Author: gaoailing
* Date: 2020.7.16
*/
isDate: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Date'
},
/**
* Description: 是否正则
* Author: gaoailing
* Date: 2020.7.16
*/
isRegExp: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'RegExp'
},
/**
* Description: 是否错误对象
* Author: gaoailing
* Date: 2020.7.16
*/
isError: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Error'
},
/**
* Description: 是否Symbol函数
* Author: gaoailing
* Date: 2020.7.16
*/
isSymbol: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Symbol'
},
/**
* Description: 是否Promise对象
* Author: gaoailing
* Date: 2020.7.16
*/
isPromise: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Promise'
},
/**
* Description: 是否Set对象
* Author: gaoailing
* Date: 2020.7.16
*/
isSet: function(o) {
return Object.prototype.toString.call(o).slice(8, -1) === 'Set'
},
/**
* Description: 是否是微信浏览器
* Author: gaoailing
* Date: 2020.7.16
*/
isWeiXin: function() {
return ua.match(/microMessenger/i) == 'micromessenger'
},
/**
* Description: 是否是移动端
* Author: gaoailing
* Date: 2020.7.16
*/
isDeviceMobile: function() {
return /android|webos|iphone|ipod|balckberry/i.test(ua)
},
/**
* Description: 是否是QQ浏览器
* Author: gaoailing
* Date: 2020.7.16
*/
isQQBrowser: function() {
return !!ua.match(/mqqbrowser|qzone|qqbrowser|qbwebviewtype/i)
},
/**
* Description: 是否是爬虫
* Author: gaoailing
* Date: 2020.7.16
*/
isSpider: function() {
return /adsbot|googlebot|bingbot|msnbot|yandexbot|baidubot|robot|careerbot|seznambot|bot|baiduspider|jikespider|symantecspider|scannerlwebcrawler|crawler|360spider|sosospider|sogou web sprider|sogou orion spider/.test(ua)
},
/**
* Description: 是否ios
* Author: gaoailing
* Date: 2020.7.16
*/
isIos: function() {
var u = navigator.userAgent;
if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) { //安卓手机
return false
} else if (u.indexOf('iPhone') > -1) { //苹果手机
return true
} else if (u.indexOf('iPad') > -1) { //iPad
return false
} else if (u.indexOf('Windows Phone') > -1) { //winphone手机
return false
} else {
return false
}
},
/**
* Description: 是否为PC端
* Author: gaoailing
* Date: 2020.7.16
*/
isPC: function() {
var userAgentInfo = navigator.userAgent;
var Agents = ["Android", "iPhone",
"SymbianOS", "Windows Phone",
"iPad", "iPod"
];
var flag = true;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
},
/**
* Description: 去除html标签
* Author: gaoailing
* Date: 2020.7.16
*/
removeHtmltag: function(str) {
return str.replace(/<[^>]+>/g, '')
},
/**
* Description: 动态引入js
* Author: gaoailing
* Date: 2020.7.16
*/
injectScript: function(src) {
const s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = src;
const t = document.getElementsByTagName('script')[0];
t.parentNode.insertBefore(s, t);
},
/**
* Description: 根据url地址下载
* Author: gaoailing
* Date: 2020.7.16
*/
download: function(url) {
var isChrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
var isSafari = navigator.userAgent.toLowerCase().indexOf('safari') > -1;
if (isChrome || isSafari) {
var link = document.createElement('a');
link.href = url;
if (link.download !== undefined) {
var fileName = url.substring(url.lastIndexOf('/') + 1, url.length);
link.download = fileName;
}
if (document.createEvent) {
var e = document.createEvent('MouseEvents');
e.initEvent('click', true, true);
link.dispatchEvent(e);
return true;
}
}
if (url.indexOf('?') === -1) {
url += '?download';
}
window.open(url, '_self');
return true;
},
/**
* Description: el是否包含某个class
* Author: gaoailing
* Date: 2020.7.16
*/
hasClass: function(el, className) {
let reg = new RegExp('(^|\\s)' + className + '(\\s|$)')
return reg.test(el.className)
},
/**
* Description: el添加某个class
* Author: gaoailing
* Date: 2020.7.16
*/
addClass: function(el, className) {
if (hasClass(el, className)) {
return
}
let newClass = el.className.split(' ')
newClass.push(className)
el.className = newClass.join(' ')
},
/**
* Description: el去除某个class
* Author: gaoailing
* Date: 2020.7.16
*/
removeClass: function(el, className) {
if (!hasClass(el, className)) {
return
}
let reg = new RegExp('(^|\\s)' + className + '(\\s|$)', 'g')
el.className = el.className.replace(reg, ' ')
},
/**
* Description: 获取滚动的坐标
* Author: gaoailing
* Date: 2020.7.16
*/
getScrollPosition: function(el = window) {
return {
x: el.pageXOffset !== undefined ? el.pageXOffset : el.scrollLeft,
y: el.pageYOffset !== undefined ? el.pageYOffset : el.scrollTop
}
},
/**
* Description: 滚动到顶部
* Author: gaoailing
* Date: 2020.7.16
*/
scrollToTop: function() {
const c = document.documentElement.scrollTop || document.body.scrollTop;
if (c > 0) {
window.requestAnimationFrame(scrollToTop);
window.scrollTo(0, c - c / 8);
}
},
/**
* Description: el是否在视口范围内
* Author: gaoailing
* Date: 2020.7.16
*/
elementIsVisibleInViewport: function(el, partiallyVisible = false) {
const { top, left, bottom, right } = el.getBoundingClientRect();
const { innerHeight, innerWidth } = window;
return partiallyVisible ?
((top > 0 && top < innerHeight) || (bottom > 0 && bottom < innerHeight)) &&
((left > 0 && left < innerWidth) || (right > 0 && right < innerWidth)) :
top >= 0 && left >= 0 && bottom <= innerHeight && right <= innerWidth;
},
/**
* Description: 洗牌算法随机
* Author: gaoailing
* Date: 2020.7.16
*/
shuffle: function(arr) {
var result = [],
random;
while (arr.length > 0) {
random = Math.floor(Math.random() * arr.length);
result.push(arr[random])
arr.splice(random, 1)
}
return result;
},
/**
* Description: 劫持粘贴板
* Author: gaoailing
* Date: 2020.7.16
*/
copyTextToClipboard: function(value) {
var textArea = document.createElement("textarea");
textArea.style.background = 'transparent';
textArea.value = value;
document.body.appendChild(textArea);
textArea.select();
try {
var successful = document.execCommand('copy');
console.log(successful);
} catch (err) {
console.log('Oops, unable to copy');
}
document.body.removeChild(textArea);
},
/**
* Description: 判断类型集合
* Author: gaoailing
* Date: 2020.7.16
*/
checkStr: function(str, type) {
switch (type) {
case 'phone': //手机号码
return /^1[3|4|5|6|7|8|9][0-9]{9}$/.test(str);
case 'tel': //座机
return /^(0\d{2,3}-\d{7,8})(-\d{1,4})?$/.test(str);
case 'card': //身份证
return /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/.test(str);
case 'pwd': //密码以字母开头,长度在6~18之间,只能包含字母、数字和下划线
return /^[a-zA-Z]\w{5,17}$/.test(str)
case 'postal': //邮政编码
return /[1-9]\d{5}(?!\d)/.test(str);
case 'QQ': //QQ号
return /^[1-9][0-9]{4,9}$/.test(str);
case 'email': //邮箱
return /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/.test(str);
case 'money': //金额(小数点2位)
return /^\d*(?:\.\d{0,2})?$/.test(str);
case 'URL': //网址
return /(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/.test(str)
case 'IP': //IP
return /((?:(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d)\\.){3}(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d))/.test(str);
case 'date': //日期时间
return /^(\d{4})\-(\d{2})\-(\d{2}) (\d{2})(?:\:\d{2}|:(\d{2}):(\d{2}))$/.test(str) || /^(\d{4})\-(\d{2})\-(\d{2})$/.test(str)
case 'number': //数字
return /^[0-9]$/.test(str);
case 'english': //英文
return /^[a-zA-Z]+$/.test(str);
case 'chinese': //中文
return /^[\\u4E00-\\u9FA5]+$/.test(str);
case 'lower': //小写
return /^[a-z]+$/.test(str);
case 'upper': //大写
return /^[A-Z]+$/.test(str);
case 'HTML': //HTML标记
return /<("[^"]*"|'[^']*'|[^'">])*>/.test(str);
default:
return true;
}
},
/**
* Description: 严格的身份验证
* Author: gaoailing
* Date: 2020.7.16
*/
isCardID: function(sId) {
if (!/(^\d{15}$)|(^\d{17}(\d|X|x)$)/.test(sId)) {
console.log('你输入的身份证长度或格式错误')
return false
}
//身份证城市
var aCity = { 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: "国外" };
if (!aCity[parseInt(sId.substr(0, 2))]) {
console.log('你的身份证地区非法')
return false
}
// 出生日期验证
var sBirthday = (sId.substr(6, 4) + "-" + Number(sId.substr(10, 2)) + "-" + Number(sId.substr(12, 2))).replace(/-/g, "/"),
d = new Date(sBirthday)
if (sBirthday != (d.getFullYear() + "/" + (d.getMonth() + 1) + "/" + d.getDate())) {
console.log('身份证上的出生日期非法')
return false
}
// 身份证号码校验
var sum = 0,
weights = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2],
codes = "10X98765432"
for (var i = 0; i < sId.length - 1; i++) {
sum += sId[i] * weights[i];
}
var last = codes[sum % 11]; //计算出来的最后一位身份证号码
if (sId[sId.length - 1] != last) {
console.log('你输入的身份证号非法')
return false
}
return true
},
/**
* Description: 随机数范围
* Author: gaoailing
* Date: 2020.7.16
*/
random: function(min, max) {
if (arguments.length === 2) {
return Math.floor(min + Math.random() * ((max + 1) - min))
} else {
return null;
}
},
/**
* Description: 将阿拉伯数字翻译成中文的大写数字
* Author: gaoailing
* Date: 2020.7.16
*/
numberToChinese: function(num) {
var AA = new Array("零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十");
var BB = new Array("", "十", "百", "仟", "萬", "億", "点", "");
var a = ("" + num).replace(/(^0*)/g, "").split("."),
k = 0,
re = "";
for (var i = a[0].length - 1; i >= 0; i--) {
switch (k) {
case 0:
re = BB[7] + re;
break;
case 4:
if (!new RegExp("0{4}//d{" + (a[0].length - i - 1) + "}$")
.test(a[0]))
re = BB[4] + re;
break;
case 8:
re = BB[5] + re;
BB[7] = BB[5];
k = 0;
break;
}
if (k % 4 == 2 && a[0].charAt(i + 2) != 0 && a[0].charAt(i + 1) == 0)
re = AA[0] + re;
if (a[0].charAt(i) != 0)
re = AA[a[0].charAt(i)] + BB[k % 4] + re;
k++;
}
if (a.length > 1) // 加上小数部分(如果有小数部分)
{
re += BB[6];
for (var i = 0; i < a[1].length; i++)
re += AA[a[1].charAt(i)];
}
if (re == '一十')
re = "十";
if (re.match(/^一/) && re.length == 3)
re = re.replace("一", "");
return re;
},
/**
* Description: 将数字转换为大写金额
* Author: gaoailing
* Date: 2020.7.16
*/
changeToChinese: function(Num) {
//判断如果传递进来的不是字符的话转换为字符
if (typeof Num == "number") {
Num = new String(Num);
};
Num = Num.replace(/,/g, "") //替换tomoney()中的“,”
Num = Num.replace(/ /g, "") //替换tomoney()中的空格
Num = Num.replace(/¥/g, "") //替换掉可能出现的¥字符
if (isNaN(Num)) { //验证输入的字符是否为数字
//alert("请检查小写金额是否正确");
return "";
};
//字符处理完毕后开始转换,采用前后两部分分别转换
var part = String(Num).split(".");
var newchar = "";
//小数点前进行转化
for (var i = part[0].length - 1; i >= 0; i--) {
if (part[0].length > 10) {
return "";
//若数量超过拾亿单位,提示
}
var tmpnewchar = ""
var perchar = part[0].charAt(i);
switch (perchar) {
case "0":
tmpnewchar = "零" + tmpnewchar;
break;
case "1":
tmpnewchar = "壹" + tmpnewchar;
break;
case "2":
tmpnewchar = "贰" + tmpnewchar;
break;
case "3":
tmpnewchar = "叁" + tmpnewchar;
break;
case "4":
tmpnewchar = "肆" + tmpnewchar;
break;
case "5":
tmpnewchar = "伍" + tmpnewchar;
break;
case "6":
tmpnewchar = "陆" + tmpnewchar;
break;
case "7":
tmpnewchar = "柒" + tmpnewchar;
break;
case "8":
tmpnewchar = "捌" + tmpnewchar;
break;
case "9":
tmpnewchar = "玖" + tmpnewchar;
break;
}
switch (part[0].length - i - 1) {
case 0:
tmpnewchar = tmpnewchar + "元";
break;
case 1:
if (perchar != 0) tmpnewchar = tmpnewchar + "拾";
break;
case 2:
if (perchar != 0) tmpnewchar = tmpnewchar + "佰";
break;
case 3:
if (perchar != 0) tmpnewchar = tmpnewchar + "仟";
break;
case 4:
tmpnewchar = tmpnewchar + "万";
break;
case 5:
if (perchar != 0) tmpnewchar = tmpnewchar + "拾";
break;
case 6:
if (perchar != 0) tmpnewchar = tmpnewchar + "佰";
break;
case 7:
if (perchar != 0) tmpnewchar = tmpnewchar + "仟";
break;
case 8:
tmpnewchar = tmpnewchar + "亿";
break;
case 9:
tmpnewchar = tmpnewchar + "拾";
break;
}
var newchar = tmpnewchar + newchar;
}
//小数点之后进行转化
if (Num.indexOf(".") != -1) {
if (part[1].length > 2) {
// alert("小数点之后只能保留两位,系统将自动截断");
part[1] = part[1].substr(0, 2)
}
for (i = 0; i < part[1].length; i++) {
tmpnewchar = ""
perchar = part[1].charAt(i)
switch (perchar) {
case "0":
tmpnewchar = "零" + tmpnewchar;
break;
case "1":
tmpnewchar = "壹" + tmpnewchar;
break;
case "2":
tmpnewchar = "贰" + tmpnewchar;
break;
case "3":
tmpnewchar = "叁" + tmpnewchar;
break;
case "4":
tmpnewchar = "肆" + tmpnewchar;
break;
case "5":
tmpnewchar = "伍" + tmpnewchar;
break;
case "6":
tmpnewchar = "陆" + tmpnewchar;
break;
case "7":
tmpnewchar = "柒" + tmpnewchar;
break;
case "8":
tmpnewchar = "捌" + tmpnewchar;
break;
case "9":
tmpnewchar = "玖" + tmpnewchar;
break;
}
if (i == 0) tmpnewchar = tmpnewchar + "角";
if (i == 1) tmpnewchar = tmpnewchar + "分";
newchar = newchar + tmpnewchar;
}
}
//替换所有无用汉字
while (newchar.search("零零") != -1)
newchar = newchar.replace("零零", "零");
newchar = newchar.replace("零亿", "亿");
newchar = newchar.replace("亿万", "亿");
newchar = newchar.replace("零万", "万");
newchar = newchar.replace("零元", "元");
newchar = newchar.replace("零角", "");
newchar = newchar.replace("零分", "");
if (newchar.charAt(newchar.length - 1) == "元") {
newchar = newchar + "整"
}
return newchar;
},
/**
* Description: 判断一个元素是否在数组中
* Author: gaoailing
* Date: 2020.7.16
*/
contains: function(arr, val) {
return arr.indexOf(val) != -1 ? true : false;
},
/**
* Description: 数组排序,{type} 1:从小到大 2:从大到小 3:随机
* Author: gaoailing
* Date: 2020.7.16
*/
sort: function(arr, type = 1) {
return arr.sort(function(a, b) {
switch (type) {
case 1:
return a - b;
case 2:
return b - a;
case 3:
return Math.random() - 0.5;
default:
return arr;
}
})
},
/**
* Description: 去重
* Author: gaoailing
* Date: 2020.7.16
*/
unique: function(arr) {
if (Array.hasOwnProperty('from')) {
return Array.from(new Set(arr));
} else {
var n = {},
r = [];
for (var i = 0; i < arr.length; i++) {
if (!n[arr[i]]) {
n[arr[i]] = true;
r.push(arr[i]);
}
}
return r;
}
},
/**
* Description: 求两个集合的并集
* Author: gaoailing
* Date: 2020.7.16
*/
union: function(a, b) {
var newArr = a.concat(b);
return this.unique(newArr);
},
/**
* Description: 求两个集合的交集
* Author: gaoailing
* Date: 2020.7.16
*/
intersect: function(a, b) {
var _this = this;
a = this.unique(a);
return this.map(a, function(o) {
return _this.contains(b, o) ? o : null;
});
},
/**
* Description: 删除其中一个元素
* Author: gaoailing
* Date: 2020.7.16
*/
remove: function(arr, ele) {
var index = arr.indexOf(ele);
if (index > -1) {
arr.splice(index, 1);
}
return arr;
},
/**
* Description: 将类数组转换为数组
* Author: gaoailing
* Date: 2020.7.16
*/
formArray: function(ary) {
var arr = [];
if (Array.isArray(ary)) {
arr = ary;
} else {
arr = Array.prototype.slice.call(ary);
};
return arr;
},
/**
* Description: 最大值
* Author: gaoailing
* Date: 2020.7.16
*/
max: function(arr) {
return Math.max.apply(null, arr);
},
/**
* Description: 最小值
* Author: gaoailing
* Date: 2020.7.16
*/
min: function(arr) {
return Math.min.apply(null, arr);
},
/**
* Description: 求和
* Author: gaoailing
* Date: 2020.7.16
*/
sum: function(arr) {
return arr.reduce(function(pre, cur) {
return pre + cur
})
},
/**
* Description: 平均值
* Author: gaoailing
* Date: 2020.7.16
*/
average: function(arr) {
return this.sum(arr) / arr.length
},
/**
* Description: 去除空格,type: 1-所有空格 2-前后空格 3-前空格 4-后空格
* Author: gaoailing
* Date: 2020.7.16
*/
trim: function(str, type) {
type = type || 1
switch (type) {
case 1:
return str.replace(/\s+/g, "");
case 2:
return str.replace(/(^\s*)|(\s*$)/g, "");
case 3:
return str.replace(/(^\s*)/g, "");
case 4:
return str.replace(/(\s*$)/g, "");
default:
return str;
}
},
/**
* Description: 字符转换,type: 1:首字母大写 2:首字母小写 3:大小写转换 4:全部大写 5:全部小写
* Author: gaoailing
* Date: 2020.7.16
*/
changeCase: function(str, type) {
type = type || 4
switch (type) {
case 1:
return str.replace(/\b\w+\b/g, function(word) {
return word.substring(0, 1).toUpperCase() + word.substring(1).toLowerCase();
});
case 2:
return str.replace(/\b\w+\b/g, function(word) {
return word.substring(0, 1).toLowerCase() + word.substring(1).toUpperCase();
});
case 3:
return str.split('').map(function(word) {
if (/[a-z]/.test(word)) {
return word.toUpperCase();
} else {
return word.toLowerCase()
}
}).join('')
case 4:
return str.toUpperCase();
case 5:
return str.toLowerCase();
default:
return str;
}
},
/**
* Description: 检测密码强度
* Author: gaoailing
* Date: 2020.7.16
*/
checkPwd: function(str) {
var Lv = 0;
if (str.length < 6) {
return Lv
}
if (/[0-9]/.test(str)) {
Lv++
}
if (/[a-z]/.test(str)) {
Lv++
}
if (/[A-Z]/.test(str)) {
Lv++
}
if (/[\.|-|_]/.test(str)) {
Lv++
}
return Lv;
},
/**
* Description: 函数节流器
* Author: gaoailing
* Date: 2020.7.16
*/
debouncer: function(fn, time, interval = 200) {
if (time - (window.debounceTimestamp || 0) > interval) {
fn && fn();
window.debounceTimestamp = time;
}
},
/**
* Description: 在字符串中插入新字符串
* Author: gaoailing
* Date: 2020.7.16
*/
insertStr: function(soure, index, newStr) {
var str = soure.slice(0, index) + newStr + soure.slice(index);
return str;
},
/**
* Description: 判断两个对象是否键值相同
* Author: gaoailing
* Date: 2020.7.16
*/
isObjectEqual: function(a, b) {
var aProps = Object.getOwnPropertyNames(a);
var bProps = Object.getOwnPropertyNames(b);
if (aProps.length !== bProps.length) {
return false;
}
for (var i = 0; i < aProps.length; i++) {
var propName = aProps[i];
if (a[propName] !== b[propName]) {
return false;
}
}
return true;
},
/**
* Description: 16进制颜色转RGBRGBA字符串
* Author: gaoailing
* Date: 2020.7.16
*/
colorToRGB: function(val, opa) {
var pattern = /^(#?)[a-fA-F0-9]{6}$/; //16进制颜色值校验规则
var isOpa = typeof opa == 'number'; //判断是否有设置不透明度
if (!pattern.test(val)) { //如果值不符合规则返回空字符
return '';
}
var v = val.replace(/#/, ''); //如果有#号先去除#号
var rgbArr = [];
var rgbStr = '';
for (var i = 0; i < 3; i++) {
var item = v.substring(i * 2, i * 2 + 2);
var num = parseInt(item, 16);
rgbArr.push(num);
}
rgbStr = rgbArr.join();
rgbStr = 'rgb' + (isOpa ? 'a' : '') + '(' + rgbStr + (isOpa ? ',' + opa : '') + ')';
return rgbStr;
},
/**
* Description: 替换地址栏指定参数值
* Author: gaoailing
* Date: 2020.7.16
*/
replaceParamVal: function(paramName, replaceVal) {
var oUrl = location.href.toString();
var re = eval('/(' + paramName + '=)([^&]*)/gi');
var nUrl = oUrl.replace(re, paramName + '=' + replaceVal);
return nUrl;
},
/**
* Description: 时间格式化
* Author: gaoailing
* Date: 2020.7.16
*/
date: function(value, format) {
/*format值为y:显示到年-2018,d:显示到天-2018-6-2,m:显示到分钟-2018-6-2 12:32,s:显示到秒-2018-6-2 12:32:56 */
if (value) {
// value = value.replace(/-/g, '/');
let date = new Date(value) // nuw 一个时间
let getHours // 小时
let getMinutes // 分
let getSecond //秒
if (date.getHours() < 10) {
getHours = "0" + date.getHours()
} else {
getHours = date.getHours()
}
// 判断小时是否小于10的补全:加0
if (date.getMinutes() < 10) {
getMinutes = "0" + date.getMinutes()
} else {
getMinutes = date.getMinutes()
}
// 判断分是否小于10的补全:加0
if (date.getSeconds() < 10) {
getSecond = "0" + date.getSeconds()
} else {
getSecond = date.getSeconds()
}
// 判断秒是否小于10的补全:加0
switch (format) {
case 'y':
return date.getFullYear()
break;
case 'd':
return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate()
break;
case 'm':
return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " + getHours + ":" + getMinutes
break;
case 's':
return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " + getHours + ":" + getMinutes + ":" + getSecond
break;
default:
return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " + getHours + ":" + getMinutes + ":" + getSecond
}
} else {
return ''
}
},
}
common.prototype = {
constructor: common
}
win.ULE = common;
}(window, document));