js 时间,如2023-04-17 10:08:01,截取出它的年月日
时间: 2024-05-09 19:21:53 浏览: 182
js中获取年月日时分秒
没问题,根据您的要求,我可以帮您截取出时间中的年月日。以下是截取的代码示例:
```javascript
let str = '2023-04-17 10:08:01';
let arr = str.split(' ')[0].split('-');
let year = arr[0];
let month = arr[1];
let day = arr[2];
console.log(year, month, day); // 输出:2023 04 17
```
您可以根据自己的需要使用这些变量。
阅读全文