1Date.prototype.format =function(format) {2if(!format) {3format = "yyyy-MM-dd hh:mm:ss";4} //如果不是这个格式强制转换5varo ={6"M+":this.getMonth() + 1,7"d+":this.getDate(),8"h+":this.getHours(),9"m+":this.getMinutes(),10"s+":this.getSeconds(),11"q+": Math.floo...
// (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+" : ...
*日期格式化 str:格式化字符,d:js日期对象或long值,d为空则自动获取当前日期格式化 */ function dateFormat(str,d) { if( checkNull(str)){ //如果格式化字符为空,返回空字符 return ""; } if(checkNull(d)){ //如果日期为空,自动获取当前日期 d=new Date(); }else if(d.constructor!=Date){//如...
Date.prototype.format=function(fmt){varo={"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...
alert(new Date().formate("yyyy-MM-dd EEE HH:mm:ss.S")); } /** *对Date的扩展,将 Date 转化为指定格式的String *月(M)、日(d)、12小时(h)、24小时(H)、分(m)、秒(s)、周(E)、季度(q) 可以用 1-2 个占位符 *年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 ...
格式化日期 function formatDate(date, fmt) { if (typeof date == 'string') { return date; } if (!fmt) fmt = "yyyy-MM-dd hh:mm:ss"; if (!date || date == null) return null; var o = { 'M+': date.getMonth() + 1, // 月份 'd+': date.getDate(), // 日 'h+': dat...
JS Date配置日期格式化 本项目采用的纯原生js的写法 引入js Date配置化diamante Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+" : this.getHours(), //小时...
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), //...
js日期格式化每次遇到日期格式化都要去网上搜一次,这次认真做次笔记。... function test(){ //Js获取当前日期时间及其它操作 var myDate = new Date..." + myDate.getFullYear()); ...
Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+" : this.getHours()%12 == 0 ? 12 : this.getHours()%12, //小时 "H+" : this.getHours(), //小时 ...