new Date(addtime).format('yyyy-MM-dd') //addtime这个是时间字符 function formatDate(date = Date.now(), fmt = 'yyyy-MM-dd') { let target = new Date(date) var o = { 'M+': target.getMonth() + 1, //月份 'd+': target.getDate(), //日 'h+': target.getHours(), //小时 ...
dateFormat(new Date()); // 输出: "2017-07-12 17:49:44" dateFormat(new Date(), 'yyyy年 MM月 dd日 HH时 mm分 ss秒 S毫秒 周E 第q季度'); // 输出: "2017年 07月 12日 17时 55分 49秒 360毫秒 周三 第3季度"
console.log(dateFormat(new Date(), 'YYYY年MMMM月DDDD日 H点M分s秒')); // 二〇一七年一月二十四日 16点24分56秒自由组合,就是这么简单。特殊的格式规则Ln-n 表示从1到6的级别,各自对应:秒,分钟,小时,天,月,年使用此格式表示对于小于等于指定级别的时间将显示为近时值,比如当前时间为2017年1月24日...
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423 // (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18 Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+":...
Date.prototype.Format = function(fmt) { //author: meizz var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+" : this.getHours(), //小时 "m+" : this.getMinutes(), //分 "s+" : this.getSeconds(), //秒 ...
Date.prototype.Format = function(fmt) { //author: meizz var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+" : this.getHours(), //小时 "m+" : this.getMinutes(), //分 "s+" : this.getSeconds(), //秒 ...
方法一:这个很不错,好像是 csdn 的 Meizz 写的: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q...) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是...
js-date-format Add format method to Date object in javascript to allow string formatting adds the following methods to a date object: getMonthName([language]) Gets the month name in the specified language. If no language is specified it will default to "en". (eg. January) ...
window.alert(date.pattern("yyyy-MM-dd hh:mm:ss")); //--> 方法三: Date.prototype.format =function(mask) { vard =this; varzeroize =function(value, length) { if(!length) length = 2; value = String(value); for(vari = 0, zeros = ''; i < (length - value.length); i++) {...
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), //...