zoukankan      html  css  js  c++  java
  • js时间格式转换

    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++中的函数
    C++基本语句
    面向对象程序设计
    数据结构中的算法
    数据结构开篇
    条件编译
    文件包含
    简单的宏替换
    系统启动过程
    parted 命令学习
  • 原文地址:https://www.cnblogs.com/Jack-Cheng008/p/12954923.html
Copyright © 2011-2022 走看看