欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS -- 获取当前格式化时间戳

程序员文章站 2024-01-23 22:01:28
...

1. js关于Date()的函数

JS -- 获取当前格式化时间戳

2.获取本地当前格式化时间

  • 日期:2019/9/24
//"2019/9/24"
function getCurDate() {
    return new Date().toLocaleDateString();
};
  • 日期:2019-9-24
//"2019-9-24"
function getCurDate() {
    return new Date().toLocaleDateString().replace(/\//g, '-');
};
  • 时间:18:20:06
//"18:20:06"
function getCurTime() {
    return new Date().toTimeString().substr(0,8);
};
  • 时间戳:2019/9/24 18:21:48
//"2019/9/24 18:21:48"
function getCurDateTime(){
   var d = new Date();
   return d.toLocaleDateString() + ' ' + d.toTimeString().substr(0,8);
}
  • 时间戳:2019-9-24 18:23:11
//"2019-9-24 18:23:11"
function getCurDateTime(){
   var d = new Date();
   return d.toLocaleDateString().replace(/\//g, '-') + ' ' + d.toTimeString().substr(0,8);
}