js截取字符串年月日时分秒
时间: 2023-11-29 07:06:06 浏览: 144
可以使用 JavaScript 中的字符串截取方法 `substring()` 或 `slice()` 来截取年月日时分秒。例如:
```javascript
const datetime = '2021-08-31 12:30:45';
const year = datetime.substring(0, 4); // 截取年份
const month = datetime.substring(5, 7); // 截取月份
const day = datetime.substring(8, 10); // 截取日期
const hour = datetime.substring(11, 13); // 截取小时
const minute = datetime.substring(14, 16); // 截取分钟
const second = datetime.substring(17, 19); // 截取秒数
```
或者:
```javascript
const datetime = '2021-08-31 12:30:45';
const year = datetime.slice(0, 4); // 截取年份
const month = datetime.slice(5, 7); // 截取月份
const day = datetime.slice(8, 10); // 截取日期
const hour = datetime.slice(11,13); // 截取小时
const minute = datetime.slice(14, 16); // 截取分钟
const second = datetime.slice(17, 19); // 截取秒数
```
阅读全文