/**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