91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
余干县| 永济市| 抚顺县| 漳平市| 读书| 建阳市| 腾冲县| 大冶市| 民丰县| 乌审旗| 石门县| 揭东县| 朔州市| 繁昌县| 民县| 潜江市| 新田县| 东兰县| 津市市| 石狮市| 武宁县| 涟水县| 香河县| 彩票| 陆川县| 齐齐哈尔市| 宝鸡市| 鹤峰县| 河曲县| 贵德县| 江口县| 敖汉旗| 肇庆市| 苏州市| 上林县| 中阳县| 方城县| 奎屯市| 太仆寺旗| 南雄市| 蒲江县|