一些常用方法备份:

function _(value) {
value = '0' + value;
return value.substr(value.length - 2);
}
Date.prototype.format = function(split) {
split = split || ""; if(split === 'time') {
return _(this.getHours()) + ':' + _(this.getMinutes()) + ':' + _(this.getSeconds()); /*返回 时:分:秒*/
} else {
var month = this.getMonth() + 1;
month = month < 10 ? "0" + month : month;
var day = this.getDate();
day = day < 10 ? "0" + day : day; return this.getFullYear() + split + month + split + day; /*返回 年月日*/
}
} Date.prototype.time = function() {
var hour = this.getHours();
var minute = this.getMinutes();
hour = hour < 10 ? "0" + hour : hour;
minute = minute < 10 ? "0" + minute : minute; return hour + ":" + minute; /*返回 时:分*/
} Date.prototype.addDays = function(n) {
return new Date(this.setDate(this.getDate() + n));
}; Date.prototype.addMonths = function(n) {
return new Date(this.setMonth(this.getMonth() + n));
}; Array.prototype.max = function() {
return Math.max.apply(null, this);
}
Array.prototype.min = function() {
return Math.min.apply(null, this);
} Array.prototype.maxVal = function() {
return this.sort()[this.length - 1];
}
Array.prototype.minVal = function() {
return this.sort()[0];
} Array.prototype.update = function(value) {
var pos = $.inArray(value, this);
if(pos === -1) {
this.push(value);
} else {
this.splice(pos, 1);
}
return this;
} String.prototype.format = function(split) {
split = split || '';
var value;
if(this.indexOf('/') !== -1) {
value = this.replace(/\//g, split);
} else if(this.indexOf('-') !== -1) {
value = this.replace(/-/g, split);
} else {
value = this.substr(0, 4) + split + this.substr(4, 2) + split + this.substr(6);
} if(split === 'date') {
var arr = value.split(split);
value = new Date(arr[0], parseInt(arr[1]) - 1, arr[2])
} if(split === 'timeStamp') {
var arr = value.split(split);
value = new Date(arr[0], parseInt(arr[1]) - 1, arr[2])
value = value.getTime();
} return value;
} String.prototype.decimal = function() {
var value;
if(this.indexOf('.') == -1) {
value = this + '.00';
} else if(this.split(".")[1].length == 1) {
value = this + '0';
} else {
value = this + '';
}
return value;
} var A = {
Service: {
get: function(url, data, success, error) {
$.ajax({
url: url,
type: "GET",
dataType: "json",
data: data || "",
cache: false,
success: function(result) {
success && success(result);
},
error: function(xhr) {
var index = layer.alert(xhr.responseJSON[0].content, {
title: '提示'
}, function() {
if(xhr.status == 401) {
layer.close(index);
//调取父级页面的退出函数
self.parent.window.quit();
} else {
layer.close(index);
}
});
error && error();
} })
},
post: function(url, data, success, error) { data = JSON.stringify(data); $.ajax({
url: url,
type: "POST",
dataType: "json",
data: data,
cache: false,
contentType: "application/json",
success: function(result) {
success && success(result);
},
error: function(xhr) {
if(xhr.status == 401) {
var index = layer.alert(xhr.responseJSON[0].content, {
title: '提示'
}, function() {
layer.close(index);
self.parent.window.quit();
});
} else if(xhr.status == 404) {
var index = layer.alert('访问错误或内部服务器错误', {
title: '提示'
}, function() {
layer.close(index);
});
} else {
layer.msg(xhr.responseJSON[0].content, {
time: 2000
});
}
error && error();
} })
},
jsonp: function(url, data, callback) {
$.ajax({
url: url,
dataType: "jsonp",
data: data,
jsonp: "callback",
success: function(result) {
callback(result);
},
timeout: 3000
});
}
},
params: function() {
var params = decodeURIComponent(window.location.search).substr(1);
if(params.indexOf('=') !== -1) {
var arr = params.split('&');
var json = {};
for(var i = 0; i < arr.length; i++) {
var t = arr[i].split('=');
json[t[0]] = t[1];
}
return json;
} else {
return params;
}
},
hash: function() {
var hash = decodeURIComponent(window.location.hash).substr(1);
var arr = hash.split('-');
return arr[1];
},
//字符串//获取//最后一位
gerStr: function(str) {
var s = '';
s = str.charAt(str.length - 1);
return s;
},
//字符串//去除//最后一位
cutStr: function(str) {
var s = '';
s = str.substring(0, str.length - 1);
return s;
},
express: {
mobile: {
exp: /^[1][3-8]\d{9}$/,
message: "请输入正确的手机号码"
},
password: {
exp: /^[A-Za-z0-9_@]+$/,
message: "密码由字母、数字、下划线或@组成"
},
enterpriseName: {
exp: /^[a-zA-Z\u4e00-\u9fa5()()_]+$/,
message: "企业名称只能输入中英文、下划线或括号"
},
license: {
exp: /^[0-9A-Za-z\-]+$/,
message: "营业执照号码只允许数字英文中横线"
},
address: {
exp: /^[0-9a-zA-Z\u4e00-\u9fa5#()()_-]+$/,
message: "公司地理位置只能包含中英文、数字、下划线、中横线、括号和#号"
},
userName: {
exp: /^[a-zA-Z\u4e00-\u9fa5]+$/,
message: "姓名只能是中英文格式"
},
fixedTel: {
exp: /^[0-9\s,、,\-]*$/,
message: "办公电话只能包含数字逗号顿号中横线和空格"
},
jobName: {
exp: /^[0-9a-zA-Z\u4e00-\u9fa5()()_]+$/,
message: "职位名称只能包含中英文数字下划线或括号"
},
recruitNum: {
exp: /^\+?[1-9][0-9]*$/,
message: "招聘人数只能是非0正整数~"
},
salary: {
exp: /^([1-9]\d*|0)(\.\d{1,2})?$/,
message: "薪酬可以是正整数或包含两位小数"
},
height: {
exp: /^\d{2,3}$/,
message: "身高只能是2-3位的整数"
},
email: {
exp: /^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/,
message: "请检查邮箱格式"
},
money: {
exp: /^(([1-9]\d*)|\d)(\.\d{1,2})?$/,
message: "请输入正确的支付金额"
},
regCode: {
exp: /^\d{4}$/,
message: "请输入正确的验证码"
}
}
}

utils.js文件;一些常用方法的备份的更多相关文章

  1. vue-cli的utils.js文件详解

    转载自:http://www.cnblogs.com/ye-hcj/p/7078047.html utils.js文件 // 引入nodejs路径模块var path = require('path' ...

  2. nodejs自己在项目中使用的一个工具库utils.js文件

    文件内容如下: /** * utils.js */ var crypto = require('crypto'); var url = require('url'); var querystring ...

  3. webpack打包时排除其中一个css、js文件,或单独打包一个css、js文件

    在项目中经常会需要将一些接口的配合文件或者某些样式文件,分离出来单独打包,便于后期改动,这里我以css文件为例,介绍实现两种方法: 项目目录: 如上图所示,现在我需要将项目中的scBtn.css文件单 ...

  4. 手撕vue-cli配置——utils.js篇

    utils.js文件主要是用来处理各种css loader的,比如css-loader,less-loader等. //引入path模块 const path = require('path') // ...

  5. 如何写一个自定义的js文件

    自定义一个Utils.js文件,在其中写js代码即可.如: (function(w){ function Utils(){} Utils.prototype.getChilds = function( ...

  6. vue-cli脚手架npm相关文件解读(4)utils.js

    系列文章传送门: 1.build/webpack.base.conf.js 2.build/webpack.prod.conf.js 3.build/webpack.dev.conf.js 4.bui ...

  7. vue项目工具文件utils.js javascript常用工具类,javascript常用工具类,util.js

    vue项目工具文件utils.js :https://blog.csdn.net/Ajaxguan/article/details/79924249 javascript常用工具类,util.js : ...

  8. 解决:Angular-cli:执行ng-build --prod后,dist文件里无js文件、文件未压缩等问题

    Angular2.0于2016年9月上线,我于9月入坑. 入坑以来,一直让我很困惑的问题 1.angular-cli是个什么鬼东西? 2.为什么我们自己的资源文件还没写什么,就有起码50多个js文件加 ...

  9. vue-cli脚手架build目录下utils.js工具配置文件详解

    此文章用来解释vue-cli脚手架build目录中的utils.js配置文件 此配置文件是vue开发环境的wepack相关配置文件,主要用来处理css-loader和vue-style-loader ...

随机推荐

  1. hdu 2199 Can you solve this equation? 二分

    Can you solve this equation? Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K ( ...

  2. MySQL常见常用的SQL优化

    应尽量避免在where中使用!=或<>操作符.否则会进行全表查询 对于查询,避免全盘扫描,考虑在where或order by涉及到的列上建立索引 避免在where中进行null值判断,否则 ...

  3. Oracle数据库基本操作(三) —— DQL相关内容说明及应用

    本文所使用的查询表来源于oracle数据中scott用户中的emp员工表和dept部门表. 一.基本语法 SQL语句的编写顺序: select 输出的列 from 表名 where 条件 group ...

  4. react 使用 ref 报错 ,[eslint] Using string literals in ref attributes is deprecated. (react/no-string-refs)

    react 项目中给指定元素加事件,使用到 react 的 ref 属性,Eslink 报错 [eslint] Using string literals in ref attributes is d ...

  5. ES6框架的搭建

    1.引入traceur.js  http://google.github.io/traceur-compiler/bin/traceur.js 2.将Traceur编译器用于网页 new traceu ...

  6. 用一个div模拟textarea并实现高度自适应

    1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="U ...

  7. void()表达式结果是SyntaxError

    void是一元运算符,他出现在操作数之前,操作数可以使任意类型,操作数会照常计算,但忽略计算结果并返回undefined. 因此在操作数具有副作用的时候使用void来让程序根据语义 console.l ...

  8. QQ 聊天机器人小薇 2.1.0 发布!

    本次发布加入了支持茉莉机器人,并且更容易搭建开发环境,在线显示登录二维码~ 简介 XiaoV(小薇)是一个用 Java 写的 QQ 聊天机器人 Web 服务,可以用于社群互动: 监听多个 QQ 群消息 ...

  9. ODP.Net Tips

    Overview Oracle Data Provider for .NET是Oracle 提供的.Net版本的数据库连接组件.下载路径. 使用的核心DLL是Oracle.DataAccess.dll ...

  10. 七、angularjs 倒计时

    使用定时器时离开页面需要清除定时器,清除的方法有两种分别针对页面有缓存和没有缓存 1.页面有缓存 2.页面没有缓存 angularjs倒计时首先需要注入:$interval 60s倒计时 vm.sec ...