2024年 5月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期发布

近期评论

    2024 年 5 月 10 日

    Neusofts

    科技改变生活,创新引领未来

    Date.js

    Date.js 是一个开源的JavaScript库,用来解析、格式化和处理日期数据,支持多种语言的日期格式处理。

    参考:http://www.datejs.com/

    示例代码:

    Date.today() // Returns today's date, with time set to 00:00 (start of day).
    
    Date.today().next().friday() // Returns the date of the next Friday.
    Date.today().last().monday() // Returns the date of the previous Monday.
    
    new Date().next().march() // Returns the date of the next March.
    new Date().last().week() // Returns the date one week ago.
    
    Date.today().is().friday() // Returns true|false if the day-of-week matches.
    Date.today().is().fri() // Abbreviated day names.
    
    Date.today().is().november() // Month names.
    Date.today().is().nov() // Abbreviated month names.