Implement the format () function of the Date object in JavaScript

Source: Internet
Author: User

Implement the format () function of the Date object in JavaScript

Due to Web page display problems, it is often necessary to convert the date into a certain format, but the JavaScript scripting language is not provided to them officially. Programmers are very lazy. Let's write it by ourselves, expand it by yourself !!

 

/** * Author Joyce.Luo 11:57:35 prepared in 2015.02.10 * JavaScript language Methods: format(), based on the replace() method to realize * For example: *         new Date().format("yyyy-MM-dd HH:mm:ss"); *         new Date().format("yyyy-MM-dd"); * @param {} pattern the pattern describing the date and time format * @return {} returns a formatted string date */Date.prototype.format = function(pattern){    var o = {        "M+" : this.getMonth()+1,                 /*Month*/        "d+" : this.getDate(),                    /*Day*/        "h+" : this.getHours(),                   /*Hours*/        "m+" : this.getMinutes(),                 /*Minute*/         "s+" : this.getSeconds(),                 /*Seconds*/        "q+" : Math.floor((this.getMonth()+3)/3), /*Quarter*/        "S"  : this.getMilliseconds()             /*Millisecond*/    };    if (/(y+)/.test(pattern))        pattern = pattern.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));    for (var k in o)        if (new RegExp("(" + k + ")").test(pattern))            pattern = pattern.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));    return pattern;}

In fact, this can be optimized, but I will not change the time. If you are interested, you can rewrite it in the comments.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.