JavaScript two lines of code output date time in the specified format

Source: Internet
Author: User
The JavaScript two lines of code output the date time in the specified format, depending on the code:
<summary>
//Format display date time
//</summary>
//<param name= "x" > Date time to display, such as new date () </ Param>
//<param name= "Y" > need to display the format, such as Yyyy-mm-dd hh:mm:ss</param>
function Date2str (x,y) {
    var z ={y:x.getfullyear (), M:x.getmonth () +1,d:x.getdate (), h:x.gethours (), M:x.getminutes (), S:x.getseconds ()};
    Return Y.replace (/(y+| m+|d+|h+|m+|s+)/g,function (v) {return (v.length>1?) 0 ":" ") +eval (' Z. ' +v.slice ( -1))). Slice (-(v.length>2?v.length:2))});
Alert (Date2str (New Date (), "yy-m-d h:m:s"));
Alert (Date2str (New Date (), "yyyy-mm-d h:m:s"));

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.