jsavascript

2024-01-03 11:31:54

JavaScript获取当前时间

效果图

在这里插入图片描述

当前时间

				var now = new Date();
				var year = now.getFullYear();
				var month = (now.getMonth() +1) <10 ? "0"+(now.getMonth() +1) : (now.getMonth() +1);
				var day = now.getDate() <10 ? "0"+now.getDate() : now.getDate()
				var hour = now.getHours() <10 ? "0"+now.getHours() : now.getHours()
				var minute = now.getMinutes() <10 ? "0"+now.getMinutes() : now.getMinutes()
				var second = now.getSeconds() <10 ? "0"+now.getSeconds() : now.getSeconds()
				// console.log("当前时间",year+"-"+month+"-"+day+" "+ hour+":"+minute+":"+second);

文章来源:https://blog.csdn.net/weixin_43312392/article/details/135357754
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。