JS cross-post substitution slash IE6 date comparison __js

Source: Internet
Author: User

<script type= "Text/javascript" >
var end = "2012-12-12";
var end = End.replace (/-/g, "/");
 Replace All "-", g for global flag, plus if I ignore case: 2012/12/12
alert (end);
var start = "2012-12-11";
Start =start.replace (/-/g, "/");
Alert (Date.parse (end)-date.parse (start));
</script>

Previously written good code on the chrome display normal, but the client machine is IE6, the project manager asked me to modify, IE6 can not parse the string, can only be converted. So it's the following.

var a= date.parse ("2012-12-12")-date.parse ("2012-11-11");

Modified: (not only to achieve a cross slash, but also to achieve a date comparison)



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.