Js 에서 날짜 변환 형식 에 대한 질문 - Date (). format ()

2571 단어
Js 를 쓸 때 날 짜 를 사용 하 는 곳 이 있 습 니 다. yyy - MM - dd 의 형식 을 요구 해서 format 함수 가 생각 났 습 니 다.
//    
var Time = new Date().format("yyyy-MM-dd");

format , , js , :
$(function () {
datatime();

});
//    
function datatime(){
Date.prototype.format = function(format){
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}

if(/(y+)/.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
}

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;
}
}
 

다음으로 전송:https://www.cnblogs.com/maozhaoqin/p/11549305.html

좋은 웹페이지 즐겨찾기