zoukankan      html  css  js  c++  java
  • JavaScript时间格式转换总结.

    1.当前系统区域设置格式(toLocaleDateString和toLocaleTimeString)

    例子:

    (new Date()).toLocaleDateString() + + (new Date()).toLocaleTimeString() 

    结果: 2008年1月29日 16:13:11

    2.普通字符串(toDateString和toTimeString)

    例子: (new Date()).toDateString() + + (new Date()).toTimeString()

    结果:Tue Jan 29 2008 16:13:11 UTC+0800

    3.格林威治标准时间(toGMTString)

    例子: (new Date()).toGMTString()

    结果:Tue, 29 Jan 2008 08:13:11 UTC

    4.全球标准时间(toUTCString)

    例子: (new Date()).toUTCString()

    结果:Tue, 29 Jan 2008 08:13:11 UTC

    5.Date对象字符串(toString)

    例子: (new Date()).toString()

    结果:Tue Jan 29 16:13:11 UTC+0800 2008

  • 相关阅读:
    电梯调度算法---结对项目小进展
    程序的单元测试—软件工程课上所获得的感悟
    软件工程之个人项目--词频统计
    c语言中文件的读写函数
    9、访问或添加属性
    5、AOP例子(切面,通知,切入点)
    6、AOP相关概念
    4、SSH集成笔记
    3、整合SSH遇到的问题
    1、各个包的作用
  • 原文地址:https://www.cnblogs.com/dadongzuo/p/2301607.html
Copyright © 2011-2022 走看看