js获取当前时间,年月日
时间: 2023-09-21 07:03:23 浏览: 68
可以使用JavaScript内置的Date()对象来获取当前时间,然后使用该对象的方法来获取年月日。
```
var today = new Date();
var year = today.getFullYear();
var month = today.getMonth() + 1;
var day = today.getDate();
console.log("今天是" + year + "年" + month + "月" + day + "日");
```
在上面的代码中,我们首先创建了一个新的Date对象,并将其赋值给变量today。然后,我们使用该对象的getFullYear()方法来获取年份,getMonth()方法来获取月份(注意,getMonth()返回的是0到11之间的数字,所以我们需要将其加1),getDate()方法来获取日期。最后,我们将这些值拼接起来,打印出来。
相关问题
js获取当前时间 年月日
以下是获取当前时间的年月日的JavaScript代码:
```javascript
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
console.log(year + "-" + month + "-" + day); // 输出:2021-10-20
```
其中,`getFullYear()`方法返回当前年份,`getMonth()`方法返回当前月份(0-11),需要加1才是实际月份,`getDate()`方法返回当前日期。最后将它们拼接起来即可得到当前时间的年月日。
js获取当前时间年月日
可以使用JavaScript中的Date对象来获取当前时间的年月日。下面是一段示例代码:
```javascript
// 创建一个Date对象
var now = new Date();
// 获取年份、月份、日期
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
// 输出结果
console.log(year + '-' + month + '-' + day);
```
这段代码会输出当前时间的年月日,格式为`YYYY-MM-DD`。其中,`getMonth()`方法返回的是0-11的整数,因此需要加1才能得到实际的月份。
阅读全文