中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

js格式化時間的方法是什么

js
小億
83
2023-12-15 00:00:29
欄目: 編程語言

在JavaScript中,有幾種格式化時間的方法,以下是一些常用的方法:

  1. 使用toLocaleString()方法:
const date = new Date();
const formattedDate = date.toLocaleString();
console.log(formattedDate); // Output: "5/3/2022, 9:45:30 PM" (based on the user's locale)
  1. 使用toISOString()方法:
const date = new Date();
const formattedDate = date.toISOString();
console.log(formattedDate); // Output: "2022-05-03T21:45:30.000Z"
  1. 使用第三方庫,如Moment.js:
const date = new Date();
const formattedDate = moment(date).format('YYYY-MM-DD HH:mm:ss');
console.log(formattedDate); // Output: "2022-05-03 21:45:30"
  1. 手動格式化日期:
const date = new Date();
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
const hours = String(date.getHours()).padStart(2, '0');
const minutes = String(date.getMinutes()).padStart(2, '0');
const seconds = String(date.getSeconds()).padStart(2, '0');
const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
console.log(formattedDate); // Output: "2022-05-03 21:45:30"

這些方法可以根據自己的需求選擇使用,每種方法都有不同的輸出格式。

0
锦屏县| 仪陇县| 且末县| 开封县| 积石山| 黔江区| 海原县| 桓台县| 双辽市| 柳林县| 定西市| 慈利县| 昌乐县| 赞皇县| 宣恩县| 永吉县| 英德市| 河北省| 怀集县| 西乡县| 乐都县| 四平市| 塔河县| 赣榆县| 绿春县| 平塘县| 南通市| 仙居县| 枣阳市| 屏山县| 苍山县| 浏阳市| 盐山县| 湄潭县| 宕昌县| 来凤县| 保德县| 永清县| 综艺| 安西县| 神农架林区|