Calculating Date in JavaScript

前端 未结 4 803
隐瞒了意图╮
隐瞒了意图╮ 2021-01-24 15:16

I am currently looking to calculate a custom date in JavaScript and my head is beginning to hurt thinking about it. I have a countdown clock that is to start every other Tuesda

相关标签:
4条回答
  • 2021-01-24 15:51

    There is a JavaScript implementation of RFC 2445 recurrence rules : http://code.google.com/p/google-caja/source/browse/trunk/src/com/google/caja/demos/calendar/rrule-cajita.js which requires some files in the same directory. See the unit test ( http://code.google.com/p/google-caja/source/browse/trunk/tests/com/google/caja/demos/calendar/rrule_test.js ) for examples of how it works.

    Try using it to parse RRULE:FREQ=WEEKLY;BYDAY=TU;INTERVAL=2 which means every second (because of the interval) week (because of the frequency) on Tuesday (because of the byday).

    0 讨论(0)
  • 2021-01-24 15:51

    Have a look at the date.js library. It has several date parsing helpers including Date.today().next().tuesday() (among others).

    0 讨论(0)
  • 2021-01-24 15:54

    I've had to do something similar (not in JS but the algorithm is similar enough)

    Now, before i start, to clarify i'm assuming this is something that happens fortnightly regardless of the length of the month, and not on the second and 4th Tuesday regardless of when it last happened, which is simpler to solve

    Pick a date in the past that this event has occured on (or the date of the first occurrence) , we'll call this date base in the following code

    var base=new Date('date of first occurrence');
    var one_day=1000*60*60*24; //length of day in ms
    
    // assume we care about if the countdown should start today 
    // this may be different if you are building a calendar etc.
    var date_to_check=new Date();
    
    var diff_in_days=math.floor(date_to_check-base)/one_day);
    var days_since_last_reset= diff_in_days%14;
    if(days_since_last_reset == 0){
        //date_to_check is the same day in the fortnightly cycle as base
        //i.e. today at some point is when you'll want to show the timer
        //If you only want to show the timer between certain times,
        //add another check here
    }else{
        //next reset in (14 - days_since_last_reset) days from date_to_check
    }
    

    Or the code-golf-esque version:

    if( Math.floor((new Date()-new Date('date of first occurrence'))/1000/60/60/24)%14 == 0 )
        //reset/start timer
    
    0 讨论(0)
  • 2021-01-24 16:11

    Please find attached link for Date Library to get the custom calculation date and time functions.

    To use it client side, download index.js and assertHelper.js and include that in your HTML.

    <script src="assertHelper.js"></script>
    <script type="text/javascript" src="index.js"></script>
    $( document ).ready(function() {
        DateLibrary.getDayOfWeek(new Date("2015-06-15"),{operationType:"Day_of_Week"}); // Output : Monday
    }
    

    You can use different functions as given in examples to get custom dates.

    To get First Day of quarter From Given Date

    DateLibrary.getRelativeDate(new Date("2015-06-15"),
        {operationType:"First_Date",granularityType:"Quarters"}) // Output : Wed Apr 01 2015 00:00:00
    

    If first day of week is Sunday, what date will be on Wednesday, if given date is 15th June 2015

    DateLibrary.getRelativeDate(iDate,
        {operationType: "Date_of_Weekday_in_Week",
            startDayOfWeek:"Sunday",returnDayOfWeek:"Wednesday"}) // Output : Wed Jun 17 2015 00:00:00
    

    If first day of week is Friday, what date will be on Tuesday of 3rd Week of 2nd month of 3rd quarter of year containing 15th June 2015 as one of the date.

    DateLibrary.getRelativeDate(new Date("2015-06-15"),
        {operationType: "Date_of_Weekday_in_Year_for_Given_Quarter_and_Month_and_Week",
            startDayOfWeek:"Friday",returnDayOfWeek:"Tuesday", QuarterOfYear:3, MonthOfQuarter:2, WeekOfMonth:3}) // Output : 18th Aug 2015
    

    If first day of week is Tuesday, what week number in year will be follow in 15th June 2015 as one of the date.

     DateLibrary.getWeekNumber(new Date("2015-06-15"),
        {operationType:"Week_of_Year",
            startDayOfWeek:"Tuesday"}) // Output : 24
    

    There are Date Difference functions also available

     DateLibrary.getDateDifference(new Date("2016-04-01"),new Date("2016-04-16"),
        {granularityType: "days"}) //output 15
    

    Function for Convert number to Timestr

    DateLibrary.getNumberToTimeStr("345", {delimiter: ":"}) //output 00:03:45
    

    It also supports Julian date conversion

     DateLibrary.julianToDate("102536") //output Fri Jun 20 2003 00:00:00
    
    0 讨论(0)
提交回复
热议问题