摘要:直接上代码在原型添加方法原始方法继承工具报出异常异常文本信息原型扩展区数组的兼容性判断原型操作异步加载异步加载的地址不正确异步加载异步加载的地址不正确下一个兄弟元素上一个兄弟元素本身后面的所有兄弟元素不包括本身本身前面的所有兄弟元素不包括
直接上代码:
v1.4
; var Tool = (function(){ var def = { }; //在原型添加方法原始方法 Function.prototype.method = function(name,func){ if(!this.prototype[name]){ this.prototype[name] = func; } }; //继承工具 function extendDeep() { var i, target = arguments[0] || {}, astr = "[object Array]", toStr = Object.prototype.toString, yArr = Array.prototype.slice.call(arguments, 1); for (i = 0, len = yArr.length; i < len; i++) { var temp = yArr[i]; for (var j in temp) { if (target.hasOwnProperty(j) && (target[i] === temp[i])) { continue; } if (temp.hasOwnProperty(j)) { if (typeof temp[j] === "object") { target[j] = (toStr.call(temp[j] === astr)) ? [] : {}; extendDeep(target[j], temp[j]); } else { if (typeof temp[j] !== "undefined") { target[j] = temp[j]; } } } } } return target; } /** * [showError 报出异常] * @param {[string]} str [异常文本信息] * @return {[type]} [description] */ function showError(str){ throw new Error(str); } /* 原型扩展区 */ //数组的indexof Array.method("indexOf",function(item){ var i = 0, len = this.length; for(;i < len;i++){ if(this[i] === item){ return i; } } return -1; }) //兼容性判断forEach Array.method("forEach",function(callback){ if(this.forEach){ this.forEach(function(item){ callback(item); }) }else { for(var i =0,len=this.length;i-1; }, //在参数1中删除参数2指定位的元素返回布尔 removeAt : function(target,index){ return !!target.splice(index,1).length; }, //在参数1中删除参数2返回布尔 remove : function(target,item){ var index = target.indexOf(item); return index > -1 ? this.removeAt(target,index) : false; }, //打乱数组返回新数组 shuffle : function(target){ var temp = target, j, x, i = target.length; for(;i>0;j = parseInt(Math.random()*i),x = target[--i],target[i] = target[j],target[j] = x){ } return temp; //target.sort(function(){return 0.5 - Math.random()}); }, //在数组中随机取一个 random : function(target){ return target[Math.floor(Math.random() * target.length)]; }, // 数组去重 unique : function(target){ var temp = []; _that: for(var i = 0,len = target.length;i < len;i ++){ for(var j = i + 1;j < len;j++){ if(target[i] === target[j]){ continue _that; } } temp.push(target[i]) } return temp; }, //去除数组中的undefined和Null compact : function(target){ if(!type.isArray(target)){ throw new Error("target error type"); } return target.filter(function(item){ return item != undefined; }) }, //获取数组对象中的属性值,组合成新数组 pluck : function(target,name){ var result = [], temp; target.forEach(function(item){ temp = item[name]; if(temp != null){ result.push(temp); } }); return result; }, //2个数组的并集 union : function(t1,t2){ return this.unique(t1.concat(t2)); }, // 取2个数组的交集 intersect : function(t1,t2){ return t1.filter(function(item){ return ~t2.indexOf(item); }); }, //取差集 diff : function(t1,t2){ var r = t1; for(var i=0;i =0;i--){ if(/S/.test(str.charAt(i))){ str = str.slice(0,i + 1); break; } } return str; }, // 模仿C语言print方法 print : function(str,object){ var arr = [].slice.call(arguments,1), index; return str.replace(/#{([^{}]+)}/gm,function(match,name){ index = Number(name); if(index >= 0){ return arr[index]; } if(object && object[name] !== ""){ return object[name]; } return ""; }) }, //补零 fillZero :function(target,n){ var z = new Array(n).join("0"), str = z + target, result = str.slice(-n); return result; //return (Math.pow(10,n) + "" + target).slice(-n); }, // 去掉script内部的html标签 stripTags : function(target){ if(type.getType(target) === "String"){ return target.replace(//img,"").replace(/<[^>]+>/g,""); } }, //首字母大写 capitalize : function(target){ return target.charAt(0).toUpperCase() + target.slice(1).toLowerCase(); }, //把字符串中的_转成- dasherize : function(target){ return this.underscored(target).replace(/_/g,"-"); }, // 把驼峰转换成_ underscored : function(target){ return target.replace(/([a-z0-9])([A-Z])/g,"$1_$2").toLowerCase(); }, //_ - 转驼峰命名 camelize: function(target) { if (target.indexOf("-") < 0 && target.indexOf("_") < 0) { return target; } return target.replace(/[-_][^-_]/g, function(match) { console.log(match) return match.charAt(1).toUpperCase(); }) }, //字符串截断方法 目标 长度默认30,截断后符号默认... truncate: function(target, len, truncation) { len = len || 30; truncation = truncation ? truncation : "..."; return (target.length > len) ? target.slice(0, (len - truncation.length)) + truncation : target.toString(); }, //获得字符串字节长度 参数2 utf-8 utf8 utf-16 utf16 byteLen: function(str, charset) { var target = 0, charCode, i, len; charset = charset ? charset.toLowerCase() : ""; if (charset === "utf-16" || charset === "utf16") { for (i = 0, len = str.length; i < len; i++) { charCode = str.charCodeAt(i); if (charCode <= 0xffff) { target += 2; } else { target += 4; } } } else { for (i = 0, len = str.length; i < len; i++) { charCode = str.charCodeAt(i); if (charCode <= 0x007f) { target += 1; } else if (charCode <= 0x07ff) { target += 2; } else if (charCode <= 0xffff) { target += 3; } else { target += 4; } } } return target; }, //重复item,times次 repeat: function(item, times) { var s = item, target = ""; while (times > 0) { if (times % 2 == 1) { target += s; } if (times == 1) { break; } s += s; times = times >> 1; } return target; //retrun new Array(times).join(item) }, //参2是参1的结尾么?参数3忽略大小写 endsWith: function(target, item, ignorecase) { var str = target.slice(-(item.length)); return ignorecase ? str.toLowerCase() === item.toLowerCase() : str === item; }, //参数2是参数1的开头么?参数3忽略大小写 startsWith: function(target, item, ignorecase) { var str = target.slice(0, item.length); return ignorecase ? str.toLowerCase() === item.toLowerCase() : str === item; }, // 类名中,参数1 是否包含参数2,类名中的分隔符 containsClass: function(target, item, separator) { return separator ? (separator + target + separator).indexOf(separator + item + separator) > -1 : this.contains(target, item); }, //判定一个字符串是否包含另一个字符串 contains: function(target, item) { return target.indexOf(item) != -1; //return target.indexOf(item) > -1; } }; // 数字扩展 var num = {}; // 类型扩展 var type = { getType : function(ele){ if(!ele)return undefined; if(window == document && document != window){ return "window"; }else if(ele.nodeType === 9){ return "document"; }else if(ele.callee){ return "arguments"; }else if(isFinite(ele.length) && ele.item){ return "nodeList"; } else { var temp = Object.prototype.toString.call(ele), reg = /[object (.*)]/, arr = reg.exec(temp); return arr[1].toLowerCase(); } }, isArray : function(ele){ return (this.getType(ele) === "array") ? true : false; }, isFunction : function(ele){ return (this.getType(ele) === "function") ? true : false; }, isObject : function(ele){ return (this.getType(ele) === "object") ? true : false; }, isString : function(ele){ return (this.getType(ele) === "string") ? true : false; }, isNumber : function(ele){ return (this.getType(ele) === "number") ? true : false; }, isBoolen : function(ele){ return (this.getType(ele) === "boolean") ? true : false; }, isUndefined : function(ele){ return (this.getType(ele) === "undefined") ? true : false; }, isNull : function(ele){ return (this.getType(ele) === "null") ? true : false; } }; // 时间扩展 var time = {}; // 获取扩展 var get = {}; //样式相关 var css = {}; // cookie相关 var cookie = {}; //浏览器判断 var os = {} //静态对照表数组 var objArr = [["dom","arr","str","num","type","time","get","cookie"],[dom,arr,str,num,type,time,get,cookie]] //模块的按需加载 var config = { //加载模块 init :function(name){ if(name === undefined){ for(var i=0,len=objArr[0].length;i
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/85452.html
摘要:之前一直看阿里云的视屏教程,虽然说还是很不错,但是很麻烦进行一键安装环境的时候会有两个数据配置文件和。用服务器管理员账号在上登陆服务器本案例使用系统。然后点击工具栏上的图标,弹出命令窗已经登上了服务器。解压刚刚下载的文件图二输入。 之前一直看阿里云的视屏教程,虽然说还是很不错,但是很麻烦;进行一键安装web环境的时候会有两个数据配置文件etc/my.cnf和etc/mysql/my.c...
摘要:一个简单的输出工具,只需简单配置,即可将接口中的所有接口及参数全部以结构化的方式输出的页面上。新增支持文件类型的数据。优化了返回结果格式化的问题。改版了界面列表展示部分,修复了扫描不到的情况。增加了对的支持支持上传文件。 spring.boot.sapi.starter 一个简单的API输出工具,只需简单配置,即可将接口中的所有API接口及参数全部以结构化的方式输出的页面上。基于Spr...
摘要:漏洞披露后,在第一时间发布了,用户可升级到此版本以修复该漏洞。年年底被爆出的首个严重安全漏洞,就是由联合创始人及首席架构师发现的。年月被爆出仪表盘和外部代理安全漏洞时,也是第一时间向用户响应,确保所有和的用户都完全不被漏洞影响。 runC是一个根据OCI(Open Container Initiative)标准创建并运行容器的CLI工具,目前Docker引擎内部也是基于runc构建的。...
阅读 1634·2021-09-22 10:02
阅读 1896·2021-09-02 15:40
阅读 2822·2019-08-30 15:55
阅读 2207·2019-08-30 15:44
阅读 3572·2019-08-30 13:18
阅读 3204·2019-08-30 11:00
阅读 1915·2019-08-29 16:57
阅读 537·2019-08-29 16:41