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

1. js关于Date()的函数

js - 获取当前格式化时间戳_第1张图片

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);
}

你可能感兴趣的:(js - 获取当前格式化时间戳)