JS Timestamp comparison size: For a set of timestamps (Start time ~ end time) and another set of time stamps to compare, to determine whether the comparison timestamp group is within the scope of requirements

Source: Internet
Author: User
Tags date1

/**js Timestamp comparison size: For a set of timestamps (Start time ~ end time) and another set of time stamps for comparison, to determine whether the comparison timestamp group is within the requirements * @param date1 date2 (shape: ' 2015-01-01 ' type string)*/functioncomparedate (date1,date2) {//Compare the time stamp interval obtained with the given time stamp    varbasedate1= ' 2015-01-01 '; varBasedate2= ' 2015-03-31 '; BaseDate1=NewDate (baseDate1). GetTime (); BaseDate2=NewDate (BaseDate2). GetTime (); Date1=NewDate (date1). GetTime (); Date2=NewDate (date2). GetTime (); //the start time to be compared must be greater than or equal to the established start time, and the end time must be less than or equal to the established end time    if(date1>=basedate1&&date2<=basedate2&&date1<basedate2&&date2>baseDate1) {Alert (' YES '); }Else{alert (' NO '); }}

JS Timestamp comparison size: For a set of timestamps (Start time ~ end time) and another set of time stamps to compare, to determine whether the comparison timestamp group is within the scope of requirements

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.