JavaScript: js 상용 도구 노트
4107 단어 JavaScript
Date.prototype.Format = function(fmt) {
var o = {
"M+" : this.getMonth() + 1, //
"d+" : this.getDate(), //
"h+" : this.getHours(), //
"m+" : this.getMinutes(), //
"s+" : this.getSeconds(), //
"q+" : Math.floor((this.getMonth() + 3) / 3), //
"S" : this.getMilliseconds()
//
};
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "")
.substr(4 - RegExp.$1.length));
for ( var k in o)
if (new RegExp("(" + k + ")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k])
: (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
};
Date.prototype.addDays = function(d) {
this.setDate(this.getDate() + d);
};
Date.prototype.addWeeks = function(w) {
this.addDays(w * 7);
};
Date.prototype.addMonths = function(m) {
var d = this.getDate();
this.setMonth(this.getMonth() + m);
if (this.getDate() < d)
this.setDate(0);
};
Date.prototype.addYears = function(y) {
var m = this.getMonth();
this.setFullYear(this.getFullYear() + y);
if (m < this.getMonth()) {
this.setDate(0);
}
};
// var now = new Date(); now.addDays(1);//
// alert(now.Format("yyyy-MM-dd"));
Date.prototype.dateDiff = function(interval, endTime) {
switch (interval) {
case "s": //
return parseInt((endTime - this) / 1000);
case "n": //
return parseInt((endTime - this) / 60000);
case "h": //
return parseInt((endTime - this) / 3600000);
case "d": //
return parseInt((endTime - this) / 86400000);
case "w": //
return parseInt((endTime - this) / (86400000 * 7));
case "m": //
return (endTime.getMonth() + 1)
+ ((endTime.getFullYear() - this.getFullYear()) * 12)
- (this.getMonth() + 1);
case "y": //
return endTime.getFullYear() - this.getFullYear();
default: //
return undefined;
}
}
/**
*
*/
var start2end = function() {
var startDate = new Date();
startDate.setDate(startDate.getDate() - 31);
$("#startDate").val(startDate.Format("yyyy-MM-dd"));
var endDate = new Date();
endDate.setDate(endDate.getDate() - 1);
$("#endDate").val(endDate.Format("yyyy-MM-dd"));
$("#startDate").datepicker({
dateFormat : "yy-mm-dd"
});
$("#endDate").datepicker({
dateFormat : "yy-mm-dd"
});
};
var start_end = function(gap) {
var startDate = new Date();
startDate.setDate(startDate.getDate() - gap);
$("#startDate").val(startDate.Format("yyyy-MM-dd"));
var endDate = new Date();
endDate.setDate(endDate.getDate() - 1);
$("#endDate").val(endDate.Format("yyyy-MM-dd"));
$("#startDate").datepicker({
dateFormat : "yy-mm-dd"
});
$("#endDate").datepicker({
dateFormat : "yy-mm-dd"
});
};
/**
*
*/
var months = function() {
var today = new Date();
today.setDate(today.getDate());
$("#month").val(today.Format("yyyy-MM"));
$("#month").datepicker({
format : "yyyy-mm",
viewMode : 1,
minViewMode : 1
});
};
Array.prototype.isInArray = function(e) {
for (i = 0; i < this.length; i++) {
if (this[i] == e)
return true;
}
return false;
}
Number.prototype.toPercent = function(){
return (Math.round(this * 10000)/100).toFixed(2) + '%';
}
var getDate = function(time){
var date = new Date(time);
var dt = date.getFullYear() +"-"+(date.getMonth()+1)+"-"+date.getDate();
return dt;
};
var getMsc = function(yyyy,mm,dd){
var date = new Date(yyyy,mm-1,dd);
return date.getTime();
};
var t1 = getMsc(2014,6,10);
var t2 = getMsc(2014,6,22);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
기초 정리 - 1문자 (String) 숫자 (Number) 불린 (Boolean) null undefined 심볼 (Symbol) 큰정수 (BigInt) 따옴표로 묶어 있어야 함 Not-A-Number - 숫자 데이터 / 숫자로 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.