JS in the use of new Date (str) To create time objects incompatible with Firefox and IE Solutions (two kinds) _javascript tips

Source: Internet
Author: User

IE new Date (strdate) returns the invalid time workaround:

Method One:

function Getdateforstringdate (strdate) {
      //Cut day and time seconds are called array
      var s = strdate.split (""); 
      var S1 = s[0].split ("-"); 
      var s2 = s[1].split (":");
      if (s2.length==2) {
        S2.push ("a");
      }
      return new Date (s1[0],s1[1]-1,s1[2],s2[0],s2[1],s2[2]);
    

Method Two:

var date = new Date (Strdate.replace ("-", "/"). Replace ("-", "/"));

The above is a small set of JS to introduce the use of new Date (str) to create the time object is not compatible with Firefox and IE solution, I hope to help you, if you have any questions please give me a message, small series will promptly reply to everyone. Here also thank you very much for the cloud Habitat Community website support!

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.