2024年 4月
1234567
891011121314
15161718192021
22232425262728
2930  

近期发布

近期评论

    2024 年 4 月 18 日

    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.