JS获取当前时间的年月日时分秒及时间的格式化的方法

作者:黄浩# 时间:2024-04-17 10:23:00 

1.获取当前时间

var myDate = new Date();

2.获取时间中的年月日时分秒


myDate.getYear();    // 获取当前年份(2位)
myDate.getFullYear();  // 获取完整的年份(4位,1970-????)
myDate.getMonth();    // 获取当前月份(0-11,0代表1月)
myDate.getDate();    // 获取当前日(1-31)
myDate.getDay();     // 获取当前星期X(0-6,0代表星期天)
myDate.getTime();    // 获取当前时间(从1970.1.1开始的毫秒数)
myDate.getHours();    // 获取当前小时数(0-23)
myDate.getMinutes();   // 获取当前分钟数(0-59)
myDate.getSeconds();   // 获取当前秒数(0-59)
myDate.getMilliseconds();  // 获取当前毫秒数(0-999)
myDate.toLocaleDateString();   // 获取当前日期
var mytime=myDate.toLocaleTimeString();   // 获取当前时间
myDate.toLocaleString( );    // 获取日期与时间

3.时间的格式化


// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18

Date.prototype.Format = function (fmt) { // author: meizz
 var o = {
   "M+": this.getMonth() + 1, // 月份
   "d+": this.getDate(), // 日
   "h+": this.getHours(), // 小时
   "m+": this.getMinutes(), // 分
   "s+": this.getSeconds(), // 秒
   "q+": Math.floor((this.getMonth() + 3) / 3), // 季度
   "S": this.getMilliseconds() // 毫秒
 };
 if (/(y+)/.test(fmt))
   fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
 for (var k in o)
   if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
     return fmt;
}

调用:


var time1 = new Date().Format("yyyy-MM-dd");

var time2 = new Date().Format("yyyy-MM-dd hh:mm:ss");

总结

以上所述是小编给大家介绍的JS获取当前时间的年月日时分秒及时间的格式化的方法网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

来源:https://www.cnblogs.com/hhmm99/p/12057760.html

标签:js,当前时间,时间,格式化
0
投稿

猜你喜欢

  • python GUI库图形界面开发之PyQt5拖放控件实例详解

    2023-04-26 08:43:24
  • jdbc连接sqlserver数据库示例

    2024-01-17 12:56:16
  • MySQL之MHA高可用配置及故障切换实现详细部署步骤

    2024-01-27 15:14:21
  • MySQL 存储过程中执行动态SQL语句的方法

    2024-01-12 21:22:22
  • Python 中如何将十六进制转换为 Base64

    2022-09-07 01:20:14
  • Anaconda 离线安装 python 包的操作方法

    2021-08-11 22:38:27
  • 详解如何利用docker快速构建MySQL主从复制环境

    2024-01-25 08:25:33
  • python常用排序算法的实现代码

    2022-08-21 08:50:00
  • chatgpt 1020 错误码成功解决的三种方案(推荐)

    2023-02-03 17:33:28
  • Linux下将Python的Django项目部署到Apache服务器

    2022-07-01 23:36:37
  • PHP中phar包的使用教程

    2023-11-09 19:55:52
  • python实现线性回归的示例代码

    2021-04-26 14:54:47
  • 理解MySQL变量和条件

    2024-01-22 21:29:29
  • linux中数据库的定时备份

    2024-01-25 17:43:25
  • numpy中的ndarray方法和属性详解

    2021-04-17 10:19:04
  • 如何使用Python实现斐波那契数列

    2021-12-09 08:20:30
  • chatGPT之Python API启用上下文管理案例详解

    2022-09-21 13:51:43
  • python双向循环链表实例详解

    2023-08-04 04:53:06
  • php中使用session_set_save_handler()函数把session保存到MySQL数据库实例

    2023-11-18 01:11:16
  • Vue3.0 自己实现放大镜效果案例讲解

    2024-04-09 10:45:54
  • asp之家 网络编程 m.aspxhome.com