95-(JSON)设置时间

本文详细介绍了如何在JavaScript中使用Date对象设置和操作时间,包括不同日期格式的解析以及Date方法如getFullYear(),setMonth()等的用法及范围限制。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>设置时间</title>
</head>
<body>
	
	<script>
		// 2022/5/23 9:10:30
		// 2022-05-23 09:10:03
		// 
		var now = new Date();
		console.log('now---', now);

		var setTime1 = new Date('2022/5/23, 9:10:30');
		console.log('setTime1---', setTime1);

		var setTime2 = new Date('2022/5/23 9:10:30');
		console.log('setTime2---', setTime2);

		var setTime3 = new Date(2022,05,23,09,10,30); // 注意月份
		console.log('setTime3---', setTime3);

		var setTime4 = new Date('May 23, 2022, 09:20:11'); 
		console.log('setTime4---', setTime4);


		//无范围
		now.setFullYear(2222);
		console.log('新 年份 ---', now.getFullYear());
		//范围是0-11
		now.setMonth(13); // 显示1, 实际2月
		console.log('新 月份 ---', now.getMonth()); // 0-11
		//范围是0-28 因为是平年2月
		now.setDate(31);
		console.log('新 天数 ---', now.getDate());
		//范围是0-24
		now.setHours(25);
		console.log('新 小时 ---', now.getHours());
		//范围是0-60
		now.setMinutes(61);
		console.log('新 分钟 ---', now.getMinutes());
		//范围是0-60
		now.setSeconds(62);
		console.log('新 秒级 ---', now.getSeconds());
		//范围是0-999
		now.setMilliseconds(1000);
		console.log('新 毫秒 ---', now.getMilliseconds());
	</script>
</body>
</html>

上述运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

七色的天空

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值