2000-10-18T19:23:52把这个时间通过js函数转化为mm/mm xx:xx
时间: 2024-03-11 10:49:09 浏览: 53
js时间类型转化(yyy-mm-dd hh:mm:ss)
可以使用 JavaScript 中的 `Date` 对象来实现。可以先将时间字符串转换为日期对象,然后再用 `getMonth()`、`getDate()`、`getHours()` 和 `getMinutes()` 方法获取对应的值,最后拼接成需要的格式。
示例代码如下:
```javascript
const datetime = new Date('2000-10-18T19:23:52');
const month = datetime.getMonth() + 1;
const date = datetime.getDate();
const hour = datetime.getHours();
const minute = datetime.getMinutes();
const formattedDatetime = `${month}/${date} ${hour}:${minute}`;
console.log(formattedDatetime); // 输出:10/18 19:23
```
其中,`getMonth()` 方法返回值是从 0 开始计数的,所以需要加上 1。另外,月份和日期都需要补零,可以使用字符串模板拼接时自动补齐。
阅读全文