String.prototype.replaceAll = function (oldStr, newStr) {
var sourceStr = this.valueOf();
while (sourceStr.indexOf(oldStr) !== -1) {
sourceStr = sourceStr.replace(oldStr, newStr);
}
return sourceStr;
};
Date.prototype.monthDay = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
Date.prototype.weekName = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
Date.prototype.addDay = function () {
return this.addDays(1);
};
Date.prototype.addDays = function (days) {
this.setTime(this.getTime() + 1000 * 60 * 60 * 24 * days);
};
/*判断某年某月某日是星期几,默认日为1号*/
Date.prototype.getWeek = function () {
return this.weekName[this.getDay()];
};
/*判断某年是否是闰年*/
Date.prototype.getLeap = function (year) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
return 29;
} else {
return 28;
}
};
Date.prototype.equal = function (d) {
return this.getFullYear() == d.getFullYear() && this.getMonth() == d.getMonth() && this.getDate() == d.getDate();
};
Date.prototype.toDateString = function () {
return this.getFullYear() + "-" + (this.getMonth() + 1) + "-" + this.getDate();
};
JS扩展
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- js 扩展:静态类型检查(facebook flow) js 语言与 java、C 系列等语言有一点很大的不同,就...
- 在项目中使用 bootstrap fileinput.js作为文件上传插件的过程中,需求提出如果文件名中包含某些特...