Resolving JavaScript new date (datestring) Errors

Source: Internet
Author: User

In the developed internal application system, jquery is used to retrieve data from SQL, and JS is used to display the date. When the short date format on the SQL Server is set to 2010-08-02, JS cannot directly use new date (strdate) to generate JS date objects, resulting in errors.

Solution:

1. Modify the region date format on the server to 2010/08/02.

2. Modify JSCode, Add two lines to process the date string

Strdate = strdate. Replace ('-'.'/')

Strdate = strdate. Replace ('-'.'/')

Note: Only one replace in JS can be replaced at a time by referring to the following urls:

 

Http://www.isstudy.com/javascript/1871.html

 

VaR ThisDay = new date ()
VaR thisday2 = new date ("08/09/1999 ")
VaR thisday3 = new date ("08/09/1999 20:15:15 ")

 

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.