gpt4 book ai didi

Javascript 将日期和时间连接在一起

转载 作者:行者123 更新时间:2023-11-30 17:19:03 24 4
gpt4 key购买 nike

我有这段代码可以在 javascript 中生成当前日期和时间:

    var date_variable = new Date();

var year = date_variable.getFullYear();
var month = date_variable.getMonth() + 1;
var day = date_variable.getDate();

var hour = date_variable.getHours();
var minutes = date_variable.getMinutes();
var seconds = date_variable.getSeconds();

var full_date = year + month + day + hour + minutes + seconds;

console.log(year);
console.log(month);
console.log(day);
console.log(hour);
console.log(minutes);
console.log(seconds);
console.log(full_date);

控制台中的所有内容都显示正常,但涉及到 full_date 变量时除外。这是控制台中显示的内容:

   2014
8
27
10
53
10
2122

我的问题是,为什么最后的输出没有将我的日期和时间组合成一个字符串?

谢谢

最佳答案

您需要先将数字与字符串连接起来。

var full_date = year +""+ month +""+ day +""+ hour +""+ minutes +""+ seconds;

关于Javascript 将日期和时间连接在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25518239/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com