JS通用方法扩展
- /*
- * 系统中JS的扩展函数
- *
- *
- */
- // 清除两边的空格
- String.prototype.trim = function() {
- returnthis.replace(/(^\s*)|(\s*$)/g, '');
- };
- // 合并多个空白为一个空白
- String.prototype.ResetBlank = function() {
- var regEx = /\s+/g;
- returnthis.replace(regEx, ' ');
- };
- // 保留数字
- String.prototype.GetNum = function() {
- var regEx = /[^\d]/g;
- returnthis.replace(regEx, '');
- };
- // 保留中文
- String.prototype.GetCN = function() {
- var regEx = /[^\u4e00-\u9fa5\uf900-\ufa2d]/g;
- returnthis.replace(regEx, '');
- };
- // String转化为Number
- String.prototype.ToInt = function() {
- return isNaN(parseInt(this)) ? this.toString() : parseInt(this);
- };
- // 得到字节长度
- String.prototype.GetLen = function() {
- var regEx = /^[\u4e00-\u9fa5\uf900-\ufa2d]+$/;
- if (regEx.test(this)) {
- returnthis.length * 2;
- } else {
- var oMatches = this.match(/[\x00-\xff]/g);
- var oLength = this.length * 2 - oMatches.length;
- return oLength;
- }
- };
- // 获取文件全名
- String.prototype.GetFileName = function() {
- var regEx = /^.*\/([^\/\?]*).*$/;
- returnthis.replace(regEx, '$1');
- };
- // 获取文件扩展名
- String.prototype.GetExtensionName = function() {
- var regEx = /^.*\/[^\/]*(\.[^\.\?]*).*$/;
- returnthis.replace(regEx, '$1');
- };
- /******add By 刘景宁 2010-12-09 *******/
- String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
- if (!RegExp.prototype.isPrototypeOf(reallyDo)) {
- returnthis.replace(new RegExp(reallyDo, (ignoreCase ? "gi" : "g")), replaceWith);
- } else {
- returnthis.replace(reallyDo, replaceWith);
- }
- };
- //格式化字符串 add By 刘景宁 2010-12-09
- String.Format = function() {
- if (arguments.length == 0) {
- return'';
- }
- if (arguments.length == 1) {
- return arguments[0];
- }
- var reg = /{(\d+)?}/g;
- var args = arguments;
- var result = arguments[0].replace(reg, function($0, $1) {
- return args[parseInt($1) + 1];
- });
- return result;
- };
- // 数字补零
- Number.prototype.LenWithZero = function(oCount) {
- var strText = this.toString();
- while (strText.length < oCount) {
- strText = '0' + strText;
- }
- return strText;
- };
- // Unicode还原
- Number.prototype.ChrW = function() {
- return String.fromCharCode(this);
- };
- // 数字数组由小到大排序
- Array.prototype.Min2Max = function() {
- var oValue;
- for (var i = 0; i < this.length; i++) {
- for (var j = 0; j <= i; j++) {
- if (this[i] < this[j]) {
- oValue = this[i];
- this[i] = this[j];
- this[j] = oValue;
- }
- }
- }
- returnthis;
- };
- // 数字数组由大到小排序
- Array.prototype.Max2Min = function() {
- var oValue;
- for (var i = 0; i < this.length; i++) {
- for (var j = 0; j <= i; j++) {
- if (this[i] > this[j]) {
- oValue = this[i];
- this[i] = this[j];
- this[j] = oValue;
- }
- }
- }
- returnthis;
- };
- // 获得数字数组中最大项
- Array.prototype.GetMax = function() {
- var oValue = 0;
- for (var i = 0; i < this.length; i++) {
- if (this[i] > oValue) {
- oValue = this[i];
- }
- }
- return oValue;
- };
- // 获得数字数组中最小项
- Array.prototype.GetMin = function() {
- var oValue = 0;
- for (var i = 0; i < this.length; i++) {
- if (this[i] < oValue) {
- oValue = this[i];
- }
- }
- return oValue;
- };
- // 获取当前时间的中文形式
- Date.prototype.GetCNDate = function() {
- var oDateText = '';
- oDateText += this.getFullYear().LenWithZero(4) + new Number(24180).ChrW();
- oDateText += this.getMonth().LenWithZero(2) + new Number(26376).ChrW();
- oDateText += this.getDate().LenWithZero(2) + new Number(26085).ChrW();
- oDateText += this.getHours().LenWithZero(2) + new Number(26102).ChrW();
- oDateText += this.getMinutes().LenWithZero(2) + new Number(20998).ChrW();
- oDateText += this.getSeconds().LenWithZero(2) + new Number(31186).ChrW();
- oDateText += new Number(32).ChrW() + new Number(32).ChrW() + new Number(26143).ChrW() + new Number(26399).ChrW() + new String('26085199682010819977222352011620845').substr(this.getDay() * 5, 5).ToInt().ChrW();
- return oDateText;
- };
- //扩展Date格式化
- Date.prototype.Format = function(format) {
- var o = {
- "M+": this.getMonth() + 1, //月份
- "d+": this.getDate(), //日
- "h+": this.getHours() % 12 == 0 ? 12 : this.getHours() % 12, //小时
- "H+": this.getHours(), //小时
- "m+": this.getMinutes(), //分
- "s+": this.getSeconds(), //秒
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
- "S": this.getMilliseconds() //毫秒
- };
- var week = {
- "0": "\u65e5",
- "1": "\u4e00",
- "2": "\u4e8c",
- "3": "\u4e09",
- "4": "\u56db",
- "5": "\u4e94",
- "6": "\u516d"
- };
- if (/(y+)/.test(format)) {
- format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
- }
- if (/(E+)/.test(format)) {
- format = format.replace(RegExp.$1, ((RegExp.$1.length > 1) ? (RegExp.$1.length > 2 ? "\u661f\u671f" : "\u5468") : "") + week[this.getDay() + ""]);
- }
- for (var k in o) {
- if (new RegExp("(" + k + ")").test(format)) {
- format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
- }
- }
- return format;
- }
- Date.prototype.Diff = function(interval, objDate) {
- //若参数不足或 objDate 不是日期类型則回传 undefined
- if (arguments.length < 2 || objDate.constructor != Date) { return undefined; }
- switch (interval) {
- //计算秒差
- case's': return parseInt((objDate - this) / 1000);
- //计算分差
- case'n': return parseInt((objDate - this) / 60000);
- //计算時差
- case'h': return parseInt((objDate - this) / 3600000);
- //计算日差
- case'd': return parseInt((objDate - this) / 86400000);
- //计算周差
- case'w': return parseInt((objDate - this) / (86400000 * 7));
- //计算月差
- case'm': return (objDate.getMonth() + 1) + ((objDate.getFullYear() - this.getFullYear()) * 12) - (this.getMonth() + 1);
- //计算年差
- case'y': return objDate.getFullYear() - this.getFullYear();
- //输入有误
- default: return undefined;
- }
- };
- //检测是否为空
- Object.prototype.IsNullOrEmpty = function() {
- var obj = this;
- var flag = false;
- if (obj == null || obj == undefined || typeof (obj) == 'undefined' || obj == '') {
- flag = true;
- } elseif (typeof (obj) == 'string') {
- obj = obj.trim();
- if (obj == '') {//为空
- flag = true;
- } else {//不为空
- obj = obj.toUpperCase();
- if (obj == 'NULL' || obj == 'UNDEFINED' || obj == '{}') {
- flag = true;
- }
- }
- }
- else {
- flag = false;
- }
- return flag;
- };
JS通用方法扩展的更多相关文章
- js数组方法扩展
/** * Created by Administrator on 2016/9/1. */ //数组去重 Array.prototype.unique = function(){ this.sort ...
- JS通用方法总结(一)
/** * id数组转换为json字符串 */ function arrayTojson(arr) { var jsonIds = "["; for ( var i = 0; i ...
- js通用方法检測浏览器是否已安装指定插件(IE与非IE通用)
/* * 检測是否已安装指定插件 * * pluginName 插件名称 */ function checkPlugins(pluginName) { var np = navigator.plugi ...
- 扩展JQuery和JS的方法
//JS的扩展方法: 1 定义类静态方法扩展 2 定义类对象方法扩展 var aClass = function(){} //1 定义这个类的静态方法 aC ...
- JS,JQuery的扩展方法
转 http://blog.csdn.net/tuwen/article/details/11464693 //JS的扩展方法: 1 定义类静态方法扩展 2 定义类对象方法扩展 ...
- 原生js事件委托(事件代理)方法扩展
原生js事件委托(事件代理)方法扩展: 通过Node底层原型扩展委托方法 /** * 事件委托方法 * @param eventName {string}:事件名称,如'click' * @param ...
- js添加事件通用方法
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...
- 使用 highchart 绘制柱状图的通用方法与接口
本文给出使用 highchart 绘制柱状图的通用方法与接口, 只要指定相应的数据结构和配置, 就可以直接拿来使用. 一. 数据结构与基本接口 一般绘制图形, 会涉及到较复杂的数据结构, 比如使 ...
- String对象方法扩展
/** *字符串-格式化 */ String.prototype.format = function(){ var args = arguments;//获取函数传递参数数组,以便在replace回调 ...
随机推荐
- Android访问设置
在需求 AndroidManifest.xml 中增加下面代码: (1)假设应用程序须要訪问网络权限 <uses-permission android:name="android.pe ...
- c# 在cmd中用 7z解压缩文件
var exePath = @"C:\Program Files\7-Zip\7z.exe"; var path = @"I:\work\MusicCatcher2\Wi ...
- 【浅墨著作】《OpenCV3编程入门》内容简单介绍&勘误&配套源码下载
经过近一年的沉淀和总结,<OpenCV3编程入门>一书最终和大家见面了. 近期有为数不少的小伙伴们发邮件给浅墨建议最好在博客里面贴出这本书的文件夹,方便大家更好的了解这本书的内容.事实上近 ...
- JS基础——函数的创建和使用
在JS中函数在使用时实质上和我们平时学习的编程语言中的函数类似,它相同也具有函数名,參数,返回值,函数体等这些寻常函数所具有的内容.可是作为一种脚本语言,它确实也有自己不一样的地方. 一.创建 < ...
- Machine Learning—Linear Regression
Evernote的同步分享:Machine Learning-Linear Regression 版权声明:本文博客原创文章.博客,未经同意,不得转载.
- Oracle中merge into的使用 (转)
http://blog.csdn.net/yuzhic/article/details/1896878 http://blog.csdn.net/macle2010/article/details/5 ...
- head first c<11>在根据网络编程
博文可以在一个大的网络通信实现,但是,一个人只能起到,我们能够给每个clientfork()子进程,实现诸多的服务. 方法: client连到server以后,server启动一个新创建的套接字对话. ...
- mysql大写和小写问题
曾经做企业项目的时候,用的都是oracle数据库,在新公司项目用的是mysql,有关mysql大写和小写的问题 1 windows下默认mysql是不区分大写和小写的,要想让其支持大写和小写.更改 ...
- Java设计模式菜鸟系列(十三)建模和实现状态模式
转载请注明出处:http://blog.csdn.net/lhy_ycu/article/details/39829859 状态模式(State):同意对象在内部状态改变时改变它的行为,对象看起来好像 ...
- .NET反编译之Reflector基础示例
这几日由于公司需要, 看了些.NET反编译技巧,特地和大家分享下 .NET反编译工具很多,Reflector是其中一个很优秀的工具,所以就用它来进行反编译工作了.今天我们就用"繁星代码生成器 ...