JS calculates the time difference (days, hours, minutes, seconds)

Source: Internet
Author: User

<script type= "Text/javascript" >vardate1= ' 2015/05/01 00:00:00 ';//Start Time        varDate2 =NewDate ();//End Time        varDate3 = Date2.gettime ()-NewDate (date1). GetTime ();//the number of milliseconds for the time difference        //------------------------------        //calculate the difference in days        varDays=math.floor (date3/(24*3600*1000))//calculate the number of hours        varleave1=date3% (24*3600*1000)//number of milliseconds remaining after counting days        varHours=math.floor (leave1/(3600*1000))//calculate the number of minutes difference        varleave2=leave1% (3600*1000)//number of milliseconds remaining after hours of calculation        varMinutes=math.floor (leave2/(60*1000))//calculate the number of seconds difference        varleave3=leave2% (60*1000)//Count the number of milliseconds left after the number of minutes        varSeconds=math.round (leave3/1000) alert ("Difference" +days+ "Days" +hours+ "hours" +minutes+ "minutes" +seconds+ "seconds")    </script>

JS calculates the time difference (days, hours, minutes, seconds)

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.