js Date 时间格式化的扩展

js Date 时间格式化的扩展:

 1 Date.prototype.format = function (fmt) {
 2     var o = {
 3         "M+": this.getMonth() + 1, //月
 4         "d+": this.getDate(), //日
 5         "h+": this.getHours() % 12 == 0 ? 12 : this.getHours() % 12, //时
 6         "H+": this.getHours(), //小时
 7         "m+": this.getMinutes(), //分
 8         "s+": this.getSeconds(), //秒
 9         "q+": Math.floor((this.getMonth() + 3) / 3), //季
10         "S": this.getMilliseconds() //毫秒
11     };
12     var week = {
13         "0": "\u65e5",
14         "1": "\u4e00",
15         "2": "\u4e8c",
16         "3": "\u4e09",
17         "4": "\u56db",
18         "5": "\u4e94",
19         "6": "\u516d"
20     };
21     if (/(y+)/.test(fmt)) {
22         fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
23     }
24     if (/(E+)/.test(fmt)) {
25         fmt = fmt.replace(RegExp.$1, ((RegExp.$1.length > 1) ? (RegExp.$1.length > 2 ? "\u661f\u671f" : "\u5468") : "") + week[this.getDay() + ""]);
26     }
27     for (var k in o) {
28         if (new RegExp("(" + k + ")").test(fmt)) {
29             fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
30         }
31     }
32     return fmt;
33 }

使用方法如下:

var date = new Date("2016-03-11T16:20:12");
$("#divResult").html(date.format("yyyy-MM-dd EE HH:mm:ss"));

时间: 2024-10-06 13:56:10

js Date 时间格式化的扩展的相关文章

JQuery时间格式化插件--扩展JQuery

(function($){ $.formatDate = function(pattern,date){ //如果不设置,默认为当前时间 if(!date) date = new Date(); if(typeof(date) ==="string"){ if(date=="") date = new Date(); else date = new Date(date.replace(/-/g,"/")); } /*补00*/ var toFix

js -- 日期时间格式化

/** * js日期时间格式化 * @param date 时间读对象 * @param format 格式化字符串 例如:yyyy年MM月dd日 hh时mm分ss秒 * @returns {string} 返回格式化后的字符串 */function dateFormat (date, format) { var o = { "M+": date.getMonth() + 1, //month "d+": date.getDate(), //day "h+

js Date 日期格式化(转)

var myDate = new Date();myDate.getYear();        //获取当前年份(2位)myDate.getFullYear();    //获取完整的年份(4位,1970-????)myDate.getMonth();       //获取当前月份(0-11,0代表1月)myDate.getDate();        //获取当前日(1-31)myDate.getDay();         //获取当前星期X(0-6,0代表星期天)myDate.getTi

js日期/时间格式化方法

一.javascript Date format(日期格式化) 方法一: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M).日(d).小时(h).分(m).秒(s).季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:0

JS 自定义时间格式化

// 对Date的扩展,将 Date 转化为指定格式的String// 月(M).日(d).小时(h).分(m).秒(s).季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423 // (new Date()).Format("

js Date日期对象的扩展

// 对Date的扩展,将 Date 转化为指定格式的String// 月(M).日(d).小时(h).分(m).秒(s).季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423 // (new Date()).Format("

关于JS Date 时间计算

倒计时功能Demo:http://play.163.com/special/test-timeending/?1465197963677 获取时间 Date() 返回当日的日期和时间. getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31).getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6).getMonth() 从 Date 对象返回月份 (0 ~ 11).getFullYear() 从 Date 对象以四位数字返回年份.getYear() 请使用 g

js本地时间格式化

var myDate = new Date(); //获取当前时间及日期 var year=myDate.getYear(); // 获取当前年份(当前年份-1900) var fyear=myDate.getFullYear(); // 获取完整的年份(4位,1970-????) var mon=myDate.getMonth(); // 获取当前月份(0-11,0代表1月) var date=myDate.getDate(); // 获取当前日(1-31) var day=myDate.ge

js日期时间格式化

const formatTimes = date => { const year = date.getFullYear() const month = date.getMonth() + 1 const day = date.getDate() const hour = date.getHours() const minute = date.getMinutes() const second = date.getSeconds() return [year, month, day].map(do