1.邮箱
-
export const isEmail = (s) => {
-
return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)
-
2.手机号码
-
export const isMobile = (s) => {
-
return /^1[0-9]{10}$/.test(s)
-
3.电话号码
-
export const isPhone = (s) => {
-
return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s)
-
4.是否url地址
-
export const isURL = (s) => {
-
return /^http[s]?:\/\/.*/.test(s)
-
5.是否字符串
-
export const isString = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘String‘
-
6.是否数字
-
export const isNumber = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Number‘
-
7.是否boolean
-
export const isBoolean = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Boolean‘
-
8.是否函数
-
export const isFunction = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Function‘
-
9.是否为null
-
export const isNull = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Null‘
-
10.是否undefined
-
export const isUndefined = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Undefined‘
-
11.是否对象
-
export const isObj = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Object‘
-
12.是否数组
-
export const isArray = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Array‘
-
13.是否时间
-
export const isDate = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Date‘
-
14.是否正则
-
export const isRegExp = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘RegExp‘
-
15.是否错误对象
-
export const isError = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Error‘
-
16.是否Symbol函数
-
export const isSymbol = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Symbol‘
-
17.是否Promise对象
-
export const isPromise = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Promise‘
-
18.是否Set对象
-
export const isSet = (o) => {
-
return Object.prototype.toString.call(o).slice(8, -1) === ‘Set‘
-
export const ua = navigator.userAgent.toLowerCase();
19.是否是微信浏览器
-
export const isWeiXin = () => {
-
return ua.match(/microMessenger/i) == ‘micromessenger‘
-
20.是否是移动端
-
export const isDeviceMobile = () => {
-
return /android|webos|iphone|ipod|balckberry/i.test(ua)
-
21.是否是QQ浏览器
-
export const isQQBrowser = () => {
-
return !!ua.match(/mqqbrowser|qzone|qqbrowser|qbwebviewtype/i)
-
22.是否是爬虫
-
export const isSpider = () => {
-
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)
-
23.是否ios
-
export const isIos = () => {
-
var u = navigator.userAgent;
-
if (u.indexOf(‘Android‘) > -1 || u.indexOf(‘Linux‘) > -1) {
-
-
} else if (u.indexOf(‘iPhone‘) > -1) {
-
-
} else if (u.indexOf(‘iPad‘) > -1) {
-
-
} else if (u.indexOf(‘Windows Phone‘) > -1) {
-
-
-
-
-
24.是否为PC端
-
export const isPC = () => {
-
var userAgentInfo = navigator.userAgent;
-
var Agents = ["Android", "iPhone",
-
"SymbianOS", "Windows Phone",
-
-
-
for (var v = 0; v < Agents.length; v++) {
-
if (userAgentInfo.indexOf(Agents[v]) > 0) {
-
-
-
-
-
-
25.去除html标签
-
export const removeHtmltag = (str) => {
-
return str.replace(/<[^>]+>/g, ‘‘)
-
26.获取url参数
-
export const getQueryString = (name) => {
-
const reg = new RegExp(‘(^|&)‘ + name + ‘=([^&]*)(&|$)‘, ‘i‘);
-
const search = window.location.search.split(‘?‘)[1] || ‘‘;
-
const r = search.match(reg) || [];
-
-
27.动态引入js
-
export const injectScript = (src) => {
-
const s = document.createElement(‘script‘);
-
s.type = ‘text/javascript‘;
-
-
-
const t = document.getElementsByTagName(‘script‘)[0];
-
t.parentNode.insertBefore(s, t);
-
28.根据url地址下载
-
export const download = (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‘);
-
-
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);
-
-
-
-
-
if (url.indexOf(‘?‘) === -1) {
-
-
-
window.open(url, ‘_self‘);
-
-
29.el是否包含某个class
-
export const hasClass = (el, className) => {
-
let reg = new RegExp(‘(^|\\s)‘ + className + ‘(\\s|$)‘)
-
return reg.test(el.className)
-
30.el添加某个class
-
export const addClass = (el, className) => {
-
if (hasClass(el, className)) {
-
-
-
let newClass = el.className.split(‘ ‘)
-
-
el.className = newClass.join(‘ ‘)
-
31.el去除某个class
-
export const removeClass = (el, className) => {
-
if (!hasClass(el, className)) {
-
-
-
let reg = new RegExp(‘(^|\\s)‘ + className + ‘(\\s|$)‘, ‘g‘)
-
el.className = el.className.replace(reg, ‘ ‘)
-
32.获取滚动的坐标
-
export const getScrollPosition = (el = window) => ({
-
x: el.pageXOffset !== undefined ? el.pageXOffset : el.scrollLeft,
-
y: el.pageYOffset !== undefined ? el.pageYOffset : el.scrollTop
-
33.滚动到顶部
-
export const scrollToTop = () => {
-
const c = document.documentElement.scrollTop || document.body.scrollTop;
-
-
window.requestAnimationFrame(scrollToTop);
-
window.scrollTo(0, c - c / 8);
-
-
34.el是否在视口范围内
-
export const elementIsVisibleInViewport = (el, partiallyVisible = false) => {
-
const { top, left, bottom, right } = el.getBoundingClientRect();
-
const { innerHeight, innerWidth } = window;
-
-
? ((top > 0 && top < innerHeight) || (bottom > 0 && bottom < innerHeight)) &&
-
((left > 0 && left < innerWidth) || (right > 0 && right < innerWidth))
-
: top >= 0 && left >= 0 && bottom <= innerHeight && right <= innerWidth;
-
35.洗牌算法随机
-
export const shuffle = (arr) => {
-
-
-
-
random = Math.floor(Math.random() * arr.length);
-
-
-
-
-
36.拦截粘贴板
-
export const copyTextToClipboard = (value) => {
-
var textArea = document.createElement("textarea");
-
textArea.style.background = ‘transparent‘;
-
-
document.body.appendChild(textArea);
-
-
-
var successful = document.execCommand(‘copy‘);
-
-
console.log(‘Oops, unable to copy‘);
-
-
document.body.removeChild(textArea);
-
37.判断类型集合
-
export const checkStr = (str, type) => {
-
-
-
return /^1[3|4|5|6|7|8|9][0-9]{9}$/.test(str);
-
-
return /^(0\d{2,3}-\d{7,8})(-\d{1,4})?$/.test(str);
-
-
return /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/.test(str);
-
-
return /^[a-zA-Z]\w{5,17}$/.test(str)
-
-
return /[1-9]\d{5}(?!\d)/.test(str);
-
-
return /^[1-9][0-9]{4,9}$/.test(str);
-
-
return /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/.test(str);
-
-
return /^\d*(?:\.\d{0,2})?$/.test(str);
-
-
return /(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/.test(str)
-
-
return /((?:(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d)\\.){3}(?:25[0-5]|2[0-4]\\d|[01]?\\d?\\d))/.test(str);
-
-
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)
-
-
return /^[0-9]$/.test(str);
-
-
return /^[a-zA-Z]+$/.test(str);
-
-
return /^[\\u4E00-\\u9FA5]+$/.test(str);
-
-
return /^[a-z]+$/.test(str);
-
-
return /^[A-Z]+$/.test(str);
-
-
return /<("[^"]*"|‘[^‘]*‘|[^‘">])*>/.test(str);
-
-
-
-
38.严格的身份证校验
-
export const isCardID = (sId) => {
-
if (!/(^\d{15}$)|(^\d{17}(\d|X|x)$)/.test(sId)) {
-
console.log(‘你输入的身份证长度或格式错误‘)
-
-
-
-
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))]) {
-
-
-
-
-
-
var sBirthday = (sId.substr(6, 4) + "-" + Number(sId.substr(10, 2)) + "-" + Number(sId.substr(12, 2))).replace(/-/g, "/"),
-
-
if (sBirthday != (d.getFullYear() + "/" + (d.getMonth() + 1) + "/" + d.getDate())) {
-
console.log(‘身份证上的出生日期非法‘)
-
-
-
-
-
-
weights = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2],
-
-
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(‘你输入的身份证号非法‘)
-
-
-
-
-
39.随机数范围
-
export const random = (min, max) => {
-
if (arguments.length === 2) {
-
return Math.floor(min + Math.random() * ((max + 1) - min))
-
-
-
-
40.将阿拉伯数字翻译成中文的大写数字
-
export const numberToChinese = (num) => {
-
var AA = new Array("零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十");
-
var BB = new Array("", "十", "百", "仟", "萬", "億", "点", "");
-
var a = ("" + num).replace(/(^0*)/g, "").split("."),
-
-
-
for (var i = a[0].length - 1; i >= 0; i--) {
-
-
-
-
-
-
if (!new RegExp("0{4}//d{" + (a[0].length - i - 1) + "}$")
-
-
-
-
-
-
-
-
-
-
if (k % 4 == 2 && a[0].charAt(i + 2) != 0 && a[0].charAt(i + 1) == 0)
-
-
-
re = AA[a[0].charAt(i)] + BB[k % 4] + re;
-
-
-
-
-
-
-
for (var i = 0; i < a[1].length; i++)
-
re += AA[a[1].charAt(i)];
-
-
-
-
if (re.match(/^一/) && re.length == 3)
-
re = re.replace("一", "");
-
-
41.将数字转换为大写金额
-
export const changeToChinese = (Num) => {
-
-
if (typeof Num == "number") {
-
-
-
Num = Num.replace(/,/g, "")
-
Num = Num.replace(/ /g, "")
-
Num = Num.replace(/¥/g, "")
-
-
-
-
-
-
var part = String(Num).split(".");
-
-
-
for (var i = part[0].length - 1; i >= 0; i--) {
-
if (part[0].length > 10) {
-
-
-
-
-
var perchar = part[0].charAt(i);
-
-
-
tmpnewchar = "零" + tmpnewchar;
-
-
-
tmpnewchar = "壹" + tmpnewchar;
-
-
-
tmpnewchar = "贰" + tmpnewchar;
-
-
-
tmpnewchar = "叁" + tmpnewchar;
-
-
-
tmpnewchar = "肆" + tmpnewchar;
-
-
-
tmpnewchar = "伍" + tmpnewchar;
-
-
-
tmpnewchar = "陆" + tmpnewchar;
-
-
-
tmpnewchar = "柒" + tmpnewchar;
-
-
-
tmpnewchar = "捌" + tmpnewchar;
-
-
-
tmpnewchar = "玖" + tmpnewchar;
-
-
-
switch (part[0].length - i - 1) {
-
-
tmpnewchar = tmpnewchar + "元";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "拾";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "佰";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "仟";
-
-
-
tmpnewchar = tmpnewchar + "万";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "拾";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "佰";
-
-
-
if (perchar != 0) tmpnewchar = tmpnewchar + "仟";
-
-
-
tmpnewchar = tmpnewchar + "亿";
-
-
-
tmpnewchar = tmpnewchar + "拾";
-
-
-
var newchar = tmpnewchar + newchar;
-
-
-
if (Num.indexOf(".") != -1) {
-
if (part[1].length > 2) {
-
-
part[1] = part[1].substr(0, 2)
-
-
for (i = 0; i < part[1].length; i++) {
-
-
perchar = part[1].charAt(i)
-
-
-
tmpnewchar = "零" + tmpnewchar;
-
-
-
tmpnewchar = "壹" + tmpnewchar;
-
-
-
tmpnewchar = "贰" + tmpnewchar;
-
-
-
tmpnewchar = "叁" + tmpnewchar;
-
-
-
tmpnewchar = "肆" + tmpnewchar;
-
-
-
tmpnewchar = "伍" + tmpnewchar;
-
-
-
tmpnewchar = "陆" + tmpnewchar;
-
-
-
tmpnewchar = "柒" + tmpnewchar;
-
-
-
tmpnewchar = "捌" + tmpnewchar;
-
-
-
tmpnewchar = "玖" + tmpnewchar;
-
-
-
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) == "元") {
-
-
-
-
42.判断一个元素是否在数组中
-
export const contains = (arr, val) => {
-
return arr.indexOf(val) != -1 ? true : false;
-
43.数组排序,{type} 1:从小到大 2:从大到小 3:随机
-
export const sort = (arr, type = 1) => {
-
return arr.sort((a, b) => {
-
-
-
-
-
-
-
return Math.random() - 0.5;
-
-
-
-
-
44.去重
-
export const unique = (arr) => {
-
if (Array.hasOwnProperty(‘from‘)) {
-
return Array.from(new Set(arr));
-
-
-
for (var i = 0; i < arr.length; i++) {
-
-
-
-
-
-
-
-
45.求两个集合的并集
-
export const union = (a, b) => {
-
var newArr = a.concat(b);
-
return this.unique(newArr);
-
46.求两个集合的交集
-
export const intersect = (a, b) => {
-
-
-
return this.map(a, function (o) {
-
return _this.contains(b, o) ? o : null;
-
-
47.删除其中一个元素
-
export const remove = (arr, ele) => {
-
var index = arr.indexOf(ele);
-
-
-
-
-
48.将类数组转换为数组
-
export const formArray = (ary) => {
-
-
if (Array.isArray(ary)) {
-
-
-
arr = Array.prototype.slice.call(ary);
-
-
-
49.最大值
-
export const max = (arr) => {
-
return Math.max.apply(null, arr);
-
50.最小值
-
export const min = (arr) => {
-
return Math.min.apply(null, arr);
-
51.求和
-
export const sum = (arr) => {
-
return arr.reduce((pre, cur) => {
-
-
-
52.平均值
-
export const average = (arr) => {
-
return this.sum(arr) / arr.length
-
53.去除空格,type: 1-所有空格 2-前后空格 3-前空格 4-后空格
-
export const trim = (str, type) => {
-
-
-
-
return str.replace(/\s+/g, "");
-
-
return str.replace(/(^\s*)|(\s*$)/g, "");
-
-
return str.replace(/(^\s*)/g, "");
-
-
return str.replace(/(\s*$)/g, "");
-
-
-
-
54.字符转换,type: 1:首字母大写 2:首字母小写 3:大小写转换 4:全部大写 5:全部小写
-
export const changeCase = (str, type) => {
-
-
-
-
return str.replace(/\b\w+\b/g, function (word) {
-
return word.substring(0, 1).toUpperCase() + word.substring(1).toLowerCase();
-
-
-
-
return str.replace(/\b\w+\b/g, function (word) {
-
return word.substring(0, 1).toLowerCase() + word.substring(1).toUpperCase();
-
-
-
return str.split(‘‘).map(function (word) {
-
if (/[a-z]/.test(word)) {
-
return word.toUpperCase();
-
-
return word.toLowerCase()
-
-
-
-
return str.toUpperCase();
-
-
return str.toLowerCase();
-
-
-
-
55.检测密码强度
-
export const checkPwd = (str) => {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
if (/[\.|-|_]/.test(str)) {
-
-
-
-
56.函数节流器
-
export const debouncer = (fn, time, interval = 200) => {
-
if (time - (window.debounceTimestamp || 0) > interval) {
-
-
window.debounceTimestamp = time;
-
-
57.在字符串中插入新字符串
-
export const insertStr = (soure, index, newStr) => {
-
var str = soure.slice(0, index) + newStr + soure.slice(index);
-
-
58.判断两个对象是否键值相同
-
export const isObjectEqual = (a, b) => {
-
var aProps = Object.getOwnPropertyNames(a);
-
var bProps = Object.getOwnPropertyNames(b);
-
-
if (aProps.length !== bProps.length) {
-
-
-
-
for (var i = 0; i < aProps.length; i++) {
-
var propName = aProps[i];
-
-
if (a[propName] !== b[propName]) {
-
-
-
-
-
59.16进制颜色转RGBRGBA字符串
-
export const colorToRGB = (val, opa) => {
-
-
var pattern = /^(#?)[a-fA-F0-9]{6}$/;
-
var isOpa = typeof opa == ‘number‘;
-
-
if (!pattern.test(val)) {
-
-
-
-
var v = val.replace(/#/, ‘‘);
-
-
-
-
for (var i = 0; i < 3; i++) {
-
var item = v.substring(i * 2, i * 2 + 2);
-
var num = parseInt(item, 16);
-
-
-
-
-
rgbStr = ‘rgb‘ + (isOpa ? ‘a‘ : ‘‘) + ‘(‘ + rgbStr + (isOpa ? ‘,‘ + opa : ‘‘) + ‘)‘;
-
-
60.追加url参数
-
export const appendQuery = (url, key, value) => {
-
-
if (typeof options == ‘string‘) {
-
-
-
-
options = $.param(options);
-
-
-
-
-
-
-