JavaScript formats JSON dates _javascript tips

Source: Internet
Author: User
Tags getdate

Here is the sample code

First effect:


Jsondateformat (jsondate) {//json date format converted to normal format
 try {
  var date = new Date (parseint ( Jsondate.replace ("/date", ""). Replace (")/", "");
  var month = Date.getmonth () + 1 < 10? "0" + (date.getmonth () + 1): Date.getmonth () + 1;
  var day = date.getdate () < 10? "0" + date.getdate (): Date.getdate ();
  return date.getfullyear () + "-" + month + "-" + Day;
 } catch (ex) {return
  "";
 }
}

Second effect:

Sometimes seconds
function Jsondateformat (jsondate) {//json date format to normal format
 try {
  var date = new Date (parseint ( Jsondate.replace ("/date", ""). Replace (")/", "");
  var month = Date.getmonth () + 1 < 10? "0" + (date.getmonth () + 1): Date.getmonth () + 1;
  var day = date.getdate () < 10? "0" + date.getdate (): Date.getdate ();
  var hours = date.gethours ();
  var minutes = Date.getminutes ();
  var seconds = date.getseconds ();
  var milliseconds = Date.getmilliseconds ();
  return date.getfullyear () + "-" + month + "-" + Day + "" + Hours + ":" + minutes + ":" + seconds + "." + Milliseconds;
   } catch (ex) {return
  "";
 }
}

Summarize

The above is the entire content that JavaScript formats the JSON date, although the function is very small, but very practical. I hope we can help you with your study.

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.