一些js的工具类 复制代码 /** * Created by sevennight on 15-1-31. * js常用工具类 */ /** * 方法作用:[格式化时间] * 使用方法 * 示例: * 使用方式一: * var now = new Date(); * var nowStr = now.dateFormat("yyyy-MM-dd hh:mm:ss"); * 使用方式二: * new Date().dateFormat("yyyy年MM月dd日");…
var uh_rdsp = (function(){ //获取根目录 var getContextPath = function(){ var pathName = document.location.pathname; var index = pathName.substr(1).indexOf("/"); var result = pathName.substr(0,index+1); return result; } //如果传入的没有参数 则显示迷你指示器 如果第一个参数传入n…
/* * Copyright 2005 Joe Walker * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LI…
Function Function.prototype.method = function (name, func) { this.prototype[name] = func; //此时this为Function,与Function.prototype形成了环,摆脱静态方法的局限. return this;};Function.method('bind', function (that) {//返回一个函数,调用这个函数,就像调用那个对象的一个方法. var method…