前端js获取当天的时间
时间: 2024-01-13 07:03:46 浏览: 82
可以使用JavaScript的Date对象来获取当前的时间,然后提取出年、月、日等信息。以下是获取当前时间并提取出年、月、日的示例代码:
```javascript
// 获取当前时间
var now = new Date();
// 提取年、月、日
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
// 将月份和日期补齐两位数
month = month < 10 ? '0' + month : month;
day = day < 10 ? '0' + day : day;
// 输出结果
console.log(year + '-' + month + '-' + day);
```
执行上述代码会输出当前日期,格式为`YYYY-MM-DD`。
相关问题
前端js获取当前时间格式为yyyy-mm-dd hh:mm:ss
在前端使用 JavaScript 获取当前时间并格式化为 "yyyy-mm-dd hh:mm:ss" 的格式,可以使用以下代码:
```javascript
// 获取当前时间
var currentDate = new Date();
// 获取年、月、日、小时、分钟、秒
var year = currentDate.getFullYear();
var month = (currentDate.getMonth() + 1 < 10 ? '0' : '') + (currentDate.getMonth() + 1);
var day = (currentDate.getDate() < 10 ? '0' : '') + currentDate.getDate();
var hours = (currentDate.getHours() < 10 ? '0' : '') + currentDate.getHours();
var minutes = (currentDate.getMinutes() < 10 ? '0' : '') + currentDate.getMinutes();
var seconds = (currentDate.getSeconds() < 10 ? '0' : '') + currentDate.getSeconds();
// 格式化时间
var formattedDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
// 输出格式化后的时间
console.log(formattedDate);
```
以上代码将会输出当前时间的格式化结果,例如 "2022-01-01 14:30:45"。
uniapp前端如何获取当前时间
在uniapp中,可以使用JavaScript的Date对象来获取当前时间。可以通过以下代码获取当前时间:
```
var now = new Date();
var year = now.getFullYear(); // 年
var month = now.getMonth() + 1; // 月
var day = now.getDate(); // 日
var hour = now.getHours(); // 时
var minute = now.getMinutes(); // 分
var second = now.getSeconds(); // 秒
```
当然,你也可以通过一行代码来获取当前时间:
```
var now = new Date().toLocaleString();
```
这样就可以获取当前时间的字符串形式。
阅读全文